playwright config: temp move to 1 worker

This commit is contained in:
pedro 2024-04-03 10:31:21 +02:00
parent c6b79a8742
commit 6185da96c8
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@ 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,
// TODO fix more than 1 worker/concurrency situation
//workers: process.env.CI ? 1 : undefined,
workers: 1,
/* 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. */