diff --git a/test/playwright.config.ts b/test/playwright.config.ts index c555f0960..fa3743eb4 100644 --- a/test/playwright.config.ts +++ b/test/playwright.config.ts @@ -11,7 +11,7 @@ import path from "path" // PWDEBUG=1 yarn test:e2e # Run Playwright inspector const config: PlaywrightTestConfig = { testDir: path.join(__dirname, "e2e"), // Search for tests in this directory. - timeout: 60000, // Each test is given 60 seconds. + timeout: 120000, // Each test is given 120 seconds. retries: process.env.CI ? 2 : 1, // Retry in CI due to flakiness. // Limit the number of failures on CI to save resources maxFailures: process.env.CI ? 3 : undefined,