From e26b5b998776659a249ef68219878f53b19b4334 Mon Sep 17 00:00:00 2001 From: muellerfluri Date: Thu, 26 Sep 2024 16:51:32 +0200 Subject: [PATCH] fix(citrus-simulator-ui): set retries for e2e tests 1 up --- simulator-ui/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator-ui/playwright.config.ts b/simulator-ui/playwright.config.ts index 378b8e6d..032c9e7c 100644 --- a/simulator-ui/playwright.config.ts +++ b/simulator-ui/playwright.config.ts @@ -17,7 +17,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.CI ? 3 : 0, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */