Skip to content

Commit

Permalink
perf(playwright.config): increase parallelism!
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed Jan 30, 2025
1 parent ab89315 commit 48e9ca3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ if (!process.env.CI) {
export default defineConfig({
testDir,
outputDir: path.join(testDir, 'test-results'),
fullyParallel: false,
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: [
['list'],
[
Expand Down

0 comments on commit 48e9ca3

Please sign in to comment.