diff --git a/playwright.config.js b/playwright.config.js index b84e18a..11ce5af 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -25,9 +25,9 @@ const config = { /* 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 ? 0 : 0, /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 2 : 3, + workers: process.env.CI ? 3 : 3, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */