Skip to content

Commit

Permalink
test(ci): allow multiple workers in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtPooki committed Jun 14, 2023
1 parent c46c0d8 commit ad43e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const config = {
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: (process.env.DEBUG || process.env.CI) ? 1 : undefined,
workers: (process.env.DEBUG) ? 1 : undefined,
reuseExistingServer: !process.env.CI,
reporter: 'list',
use: {
Expand Down

0 comments on commit ad43e04

Please sign in to comment.