devops(bidi): increase global timeout to 60m (#32775)

Firefox tests are running out of time on CI.
This commit is contained in:
Yury Semikhatsky 2024-09-23 17:55:30 -07:00 committed by GitHub
parent 8557b98aee
commit fbeba6619a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ const config: Config<PlaywrightWorkerOptions & PlaywrightTestOptions & TestModeW
},
maxFailures: 0,
timeout: 15 * 1000,
globalTimeout: 30 * 60 * 1000,
globalTimeout: 60 * 60 * 1000,
workers: process.env.CI ? 2 : undefined,
fullyParallel: !process.env.CI,
forbidOnly: !!process.env.CI,