Skip to content

Commit f45019e

Browse files
committed
--amend
1 parent b70bbae commit f45019e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default defineConfig({
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: 20 * 60 * 1000,
20+
globalTimeout: 40 * 60 * 1000, // Temporary: store creation adds time per test; will reduce with parallel workers
2121

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

packages/e2e/setup/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export const BROWSER_TIMEOUT = {
2626
short: 1_000,
2727
/** 3s — page settle, element visibility checks */
2828
medium: 3_000,
29-
/** 15s — slow page loads (store admin, heavy pages, CI network variability) */
30-
long: 15_000,
29+
/** 5s — slow page loads (store admin, heavy pages) */
30+
long: 5_000,
3131
/** 60s — browser-level default for any Playwright action */
3232
max: 60_000,
3333
} as const

0 commit comments

Comments
 (0)