From b0df0345a1cb2ab3ec5cca72dcff15ed94ee4d37 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Tue, 26 Sep 2023 22:58:42 +0530 Subject: [PATCH] fix: Enabled multiple retries --- tests/playwright/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/playwright.config.ts b/tests/playwright/playwright.config.ts index 34f4409af3..8f7359dca8 100644 --- a/tests/playwright/playwright.config.ts +++ b/tests/playwright/playwright.config.ts @@ -27,7 +27,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 ? 1 : 0, + retries: process.env.CI ? 3 : 0, /* Opt out of parallel tests on CI. */ // workers: process.env.CI ? 2 : 4, workers: process.env.CI ? 2 : 4,