chore(bidi): no retries on CI (#34080)

This commit is contained in:
Yury Semikhatsky 2024-12-19 11:55:10 -08:00 committed by GitHub
parent 94ffbcb9c5
commit 8e721fac85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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: [],
};