diff options
Diffstat (limited to 'playwright.config.js')
-rw-r--r-- | playwright.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playwright.config.js b/playwright.config.js index 4658ceb2..a13eb710 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -45,7 +45,7 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : undefined, + workers: process.env.CI ? 1 : void 0, /* 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. */ |