diff --git a/packages/opencode/test/fixture/fixture.ts b/packages/opencode/test/fixture/fixture.ts index aed7add343..185b32b38a 100644 --- a/packages/opencode/test/fixture/fixture.ts +++ b/packages/opencode/test/fixture/fixture.ts @@ -60,8 +60,8 @@ export async function tmpdir(options?: TmpDirOptions) { try { await options?.dispose?.(realpath) } finally { - if (options?.git) await stop(realpath) - await clean(realpath) + if (options?.git) await stop(realpath).catch(() => undefined) + await clean(realpath).catch(() => undefined) } }, path: realpath,