Skip to content

Commit 0cf54f5

Browse files
committed
E2E: parallel workers
1 parent 898e174 commit 0cf54f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/e2e/playwright.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ const isCI = Boolean(process.env.CI)
1010
export default defineConfig({
1111
globalSetup: './setup/global-auth.ts',
1212
testDir: './tests',
13-
fullyParallel: false,
13+
fullyParallel: true,
1414
forbidOnly: isCI,
1515
retries: 0,
16-
workers: 1,
16+
workers: 5,
1717
maxFailures: isCI ? 3 : 0, // Stop early in CI after 3 failures
1818
reporter: isCI ? [['html', {open: 'never'}], ['list']] : [['list']],
1919
timeout: TEST_TIMEOUT.default, // Heavy tests override via test.setTimeout()
20-
globalTimeout: 35 * 60 * 1000, // Temporary: store creation adds time per test; will reduce with parallel workers
20+
globalTimeout: 15 * 60 * 1000,
2121

2222
use: {
2323
trace: isCI ? 'on' : 'off',

0 commit comments

Comments
 (0)