Skip to content

Commit 103aaea

Browse files
committed
test: increase playwright expect timeout for worker imports
Increased expect timeout from 5s to 15s to accommodate worker thread encoding imports (~10s). This prevents test timeouts during startup.
1 parent 6c298f2 commit 103aaea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default defineConfig({
66
testDir: "./tests/e2e",
77
timeout: 120_000,
88
expect: {
9-
timeout: 5_000,
9+
timeout: 15_000, // Increased to allow worker thread encoding import (~10s)
1010
},
1111
fullyParallel: true,
1212
forbidOnly: isCI,

0 commit comments

Comments
 (0)