Skip to content

Commit daac89a

Browse files
committed
fix: workers:'100%' to use all available CPU cores
1 parent 1d2ca45 commit daac89a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default defineConfig({
44
testDir: './e2e',
55
fullyParallel: false,
66
// workers:1 keeps lab scene transitions stable; TFJS model load is timing-sensitive.
7-
workers: 1,
7+
workers: '100%',
88
retries: process.env.CI ? 2 : 0,
99
// 90 s per test — TFJS model (1.87 MB) + scene transitions can be slow in CI.
1010
timeout: 60_000,

0 commit comments

Comments
 (0)