From 984eefa6f89c04311480dc759b5d3651c56509ae Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Fri, 15 May 2026 11:02:14 +0000 Subject: [PATCH] chore: generate --- packages/opencode/test/project/instance-bootstrap.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/opencode/test/project/instance-bootstrap.test.ts b/packages/opencode/test/project/instance-bootstrap.test.ts index df6b76aa02..c5b18cc5b8 100644 --- a/packages/opencode/test/project/instance-bootstrap.test.ts +++ b/packages/opencode/test/project/instance-bootstrap.test.ts @@ -88,9 +88,9 @@ it.live("CLI bootstrap disposes the instance when the callback rejects", () => const tmp = yield* bootstrapFixture const disposed = yield* waitDisposed(tmp.directory).pipe(Effect.forkScoped) - const exit = yield* Effect.promise(() => cliBootstrap(tmp.directory, async () => Promise.reject(new Error("boom")))).pipe( - Effect.exit, - ) + const exit = yield* Effect.promise(() => + cliBootstrap(tmp.directory, async () => Promise.reject(new Error("boom"))), + ).pipe(Effect.exit) expect(Exit.isFailure(exit)).toBe(true) if (Exit.isFailure(exit)) expect(Cause.squash(exit.cause)).toMatchObject({ message: "boom" })