Decreased retry of test from 5 to 3. (#15705)

This commit is contained in:
Andreas Zerbst
2024-02-13 09:04:50 +01:00
committed by GitHub
parent c27532fe72
commit f92c23438e

View File

@@ -19,7 +19,7 @@ export default defineConfig({
/* Fail the build on CI if you accidentally left test.only in the source code. */ /* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI, forbidOnly: !!process.env.CI,
/* Retry on CI only */ /* Retry on CI only */
retries: process.env.CI ? 5 : 2, retries: process.env.CI ? 3 : 2,
// We don't want to run parallel, as tests might differ in state // We don't want to run parallel, as tests might differ in state
workers: 1, workers: 1,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */ /* Reporter to use. See https://playwright.dev/docs/test-reporters */