Skip to content

Commit

Permalink
ci: increase pw workers limit
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoTuxx committed Nov 26, 2024
1 parent 9ae990d commit 93b5e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default defineConfig({
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: undefined,
workers: process.env.CI ? 5 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
webServer: {
Expand Down

0 comments on commit 93b5e47

Please sign in to comment.