diff --git a/frontend/testing/playwright/playwright.config.ts b/frontend/testing/playwright/playwright.config.ts index 19880ea2561..8f0d8ef3b2b 100644 --- a/frontend/testing/playwright/playwright.config.ts +++ b/frontend/testing/playwright/playwright.config.ts @@ -14,6 +14,7 @@ export default defineConfig({ baseURL: process.env.PLAYWRIGHT_TEST_BASE_URL, }, fullyParallel: false, + timeout: 3 * 60 * 1000, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined,