summaryrefslogtreecommitdiffhomepage
path: root/packages/app/e2e/fixtures.ts
diff options
context:
space:
mode:
authoropencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>2026-04-01 15:59:28 +0000
committeropencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>2026-04-01 15:59:28 +0000
commit0a125e5d4d76f2ea8b015d7bd716b54f30f01d90 (patch)
treea3da7736476745a755e870318cca38d77e92c3ec /packages/app/e2e/fixtures.ts
parent38d22765920ef5047db4d9f1bdc0bdf602e6906f (diff)
downloadopencode-0a125e5d4d76f2ea8b015d7bd716b54f30f01d90.tar.gz
opencode-0a125e5d4d76f2ea8b015d7bd716b54f30f01d90.zip
chore: generate
Diffstat (limited to 'packages/app/e2e/fixtures.ts')
-rw-r--r--packages/app/e2e/fixtures.ts8
1 files changed, 2 insertions, 6 deletions
diff --git a/packages/app/e2e/fixtures.ts b/packages/app/e2e/fixtures.ts
index c94c93992..592db60da 100644
--- a/packages/app/e2e/fixtures.ts
+++ b/packages/app/e2e/fixtures.ts
@@ -186,9 +186,7 @@ export const test = base.extend<TestFixtures, WorkerFixtures>({
await use(gotoSession)
},
withProject: async ({ page }, use) => {
- await use((callback, options) =>
- runProject(page, callback, options),
- )
+ await use((callback, options) => runProject(page, callback, options))
},
withBackendProject: async ({ page, backend }, use) => {
await use((callback, options) =>
@@ -241,9 +239,7 @@ async function runProject<T>(
} finally {
setHealthPhase(page, "cleanup")
await Promise.allSettled(
- Array.from(sessions, ([sessionID, directory]) =>
- cleanupSession({ sessionID, directory, serverUrl: url }),
- ),
+ Array.from(sessions, ([sessionID, directory]) => cleanupSession({ sessionID, directory, serverUrl: url })),
)
await Promise.allSettled(Array.from(dirs, (directory) => cleanupTestProject(directory)))
await cleanupTestProject(root)