Skip to content

Commit

Permalink
test(e2e): enable workers in build mode of ci (#1541)
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Apr 15, 2024
1 parent 2bbb2b2 commit a33ca46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineConfig({
forbidOnly: isCI,
reporter: isCI ? 'github' : 'line',
retries: isCI ? 2 : 0,
workers: isCI || isDev ? 1 : undefined,
workers: isDev ? 1 : undefined,
projects: [
{
name: 'chromium',
Expand Down

0 comments on commit a33ca46

Please sign in to comment.