opencode-agent[bot] 2 месяцев назад
Родитель
Сommit
40db33c415
1 измененных файлов с 3 добавлено и 4 удалено
  1. 3 4
      packages/opencode/test/lib/cli-process.ts

+ 3 - 4
packages/opencode/test/lib/cli-process.ts

@@ -194,10 +194,9 @@ export function withCliFixture<A, E>(
 
     const home = yield* fs.makeTempDirectory({ prefix: "oc-cli-" })
     yield* Effect.addFinalizer(() =>
-      fs.remove(home, { recursive: true }).pipe(
-        Effect.retry(Schedule.spaced("50 millis").pipe(Schedule.both(Schedule.recurs(20)))),
-        Effect.ignore,
-      ),
+      fs
+        .remove(home, { recursive: true })
+        .pipe(Effect.retry(Schedule.spaced("50 millis").pipe(Schedule.both(Schedule.recurs(20)))), Effect.ignore),
     )
 
     const configJson = JSON.stringify(testProviderConfig(llm.url))