From a059129252216c5f5cba83e9bca3d90cf658b7be Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Wed, 21 Dec 2022 16:07:18 -0700 Subject: [PATCH] chore: increase playwright timeout --- test/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,