diff --git a/client/playwright.config.ts b/client/playwright.config.ts index ba62bc5..ed90bb0 100644 --- a/client/playwright.config.ts +++ b/client/playwright.config.ts @@ -18,7 +18,7 @@ export default defineConfig({ /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */ - retries: process.env.CI ? 2 : 0, + retries: process.env.retries ? +process.env.retries : 3, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */