V14 QA Decreased retry amount (#16423)

* Decreased retry once again

* Changed fallback value to 1
This commit is contained in:
Andreas Zerbst
2024-05-27 16:17:03 +02:00
committed by GitHub
parent 1f7b7043b3
commit b6be3c50f1

View File

@@ -19,7 +19,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 ? 3 : 2,
retries: process.env.CI ? 2 : 1,
// We don't want to run parallel, as tests might differ in state
workers: 1,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */