opencode-agent[bot] 3 месяцев назад
Родитель
Сommit
0fd0facc44
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      packages/opencode/test/tool/shell.test.ts

+ 3 - 1
packages/opencode/test/tool/shell.test.ts

@@ -27,7 +27,9 @@ const shellLayer = Layer.mergeAll(
   Agent.defaultLayer,
 )
 const it = testEffect(shellLayer)
-type ShellTestServices = (typeof shellLayer extends Layer.Layer<infer ROut, infer _E, infer _RIn> ? ROut : never) | Scope.Scope
+type ShellTestServices =
+  | (typeof shellLayer extends Layer.Layer<infer ROut, infer _E, infer _RIn> ? ROut : never)
+  | Scope.Scope
 
 const initShell = Effect.fn("ShellToolTest.init")(function* () {
   const info = yield* ShellTool