From 24c8d29724d2580fa028b41fea2836db5072fed8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Zieli=C5=84ski?= Date: Mon, 7 Oct 2024 20:09:26 +0200 Subject: [PATCH] Retry Playwright failures 3 times --- packages/playground/website/playwright/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playground/website/playwright/playwright.config.ts b/packages/playground/website/playwright/playwright.config.ts index 2c908d7617..5e8ad1699a 100644 --- a/packages/playground/website/playwright/playwright.config.ts +++ b/packages/playground/website/playwright/playwright.config.ts @@ -10,7 +10,7 @@ export const playwrightConfig: PlaywrightTestConfig = { fullyParallel: false, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, - retries: 1, + retries: 3, workers: 3, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [['html'], ['list', { printSteps: true }]],