Skip to content

Commit a059129

Browse files
committed
chore: increase playwright timeout
1 parent 9681243 commit a059129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import path from "path"
1111
// PWDEBUG=1 yarn test:e2e # Run Playwright inspector
1212
const config: PlaywrightTestConfig = {
1313
testDir: path.join(__dirname, "e2e"), // Search for tests in this directory.
14-
timeout: 60000, // Each test is given 60 seconds.
14+
timeout: 120000, // Each test is given 120 seconds.
1515
retries: process.env.CI ? 2 : 1, // Retry in CI due to flakiness.
1616
// Limit the number of failures on CI to save resources
1717
maxFailures: process.env.CI ? 3 : undefined,

0 commit comments

Comments
 (0)