Skip to content

Commit

Permalink
chore(bidi): no retries on CI (#34080)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Dec 19, 2024
1 parent 94ffbcb commit 8e721fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bidi/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const config: Config<PlaywrightWorkerOptions & PlaywrightTestOptions & TestModeW
workers: process.env.CI ? 2 : undefined,
fullyParallel: !process.env.CI,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 3 : 0,
retries: 0, // No retries even on CI for now.
reporter: reporters(),
projects: [],
};
Expand Down

0 comments on commit 8e721fa

Please sign in to comment.