From 6a06d7acf151735b60bb7eebb120254b7824211a Mon Sep 17 00:00:00 2001 From: stanislavchalapko Date: Wed, 28 Feb 2024 10:49:21 +0200 Subject: [PATCH] debug run --- playwright.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. */