Skip to content

Commit

Permalink
fix: disable parallel workers
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaisailovic committed Feb 13, 2024
1 parent 613d1ff commit b4e0387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/laboratory/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default defineConfig<ModalFixture>({

fullyParallel: false,
retries: 3,
workers: 3,
workers: 1,
reporter: process.env['CI']
? [['list'], ['html', { open: 'never' }]]
: [['list'], ['html', { host: '0.0.0.0' }]],
Expand Down

0 comments on commit b4e0387

Please sign in to comment.