E2E: enable reporting slow blocks test. (#49367)

This commit is contained in:
Vladimir Reznichenko 2024-07-11 12:21:59 +02:00 committed by GitHub
parent ab21f5981f
commit f8c0e6e02f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View File

@ -16,12 +16,10 @@ const config: PlaywrightTestConfig = {
),
testDir: './tests',
retries: CI ? 2 : 0,
// We're running our tests in serial, so we only need one worker.
workers: 1,
reportSlowTests: { max: 5, threshold: 30 * 1000 }, // 30 seconds threshold
fullyParallel: false,
forbidOnly: !! CI,
// Don't report slow test "files", as we're running our tests in serial.
reportSlowTests: null,
reporter: process.env.CI
? [
[ 'github' ],

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
E2E: enable slow tests reporting for blocks E2E tests.