diff --git a/packages/app/playwright.config.ts b/packages/app/playwright.config.ts index 977d4b451..0b5b10ef2 100644 --- a/packages/app/playwright.config.ts +++ b/packages/app/playwright.config.ts @@ -50,6 +50,7 @@ export const playwrightConfig: PlaywrightTestConfig = { channel: 'chrome-beta', ...devices['Desktop Chrome'], }, + retries: IS_CI ? 4 : 0, }, ], testIgnore: ['playwright/crx/lock.test.ts'], diff --git a/packages/e2e-contract-tests/playwright.config.ts b/packages/e2e-contract-tests/playwright.config.ts index 8b383d2e1..a36116ea4 100644 --- a/packages/e2e-contract-tests/playwright.config.ts +++ b/packages/e2e-contract-tests/playwright.config.ts @@ -39,6 +39,7 @@ const config: PlaywrightTestConfig = defineConfig({ channel: 'chrome-beta', ...devices['Desktop Chrome'], }, + retries: IS_CI ? 4 : 0, }, ], });