E2E: enable reporting slow blocks test. (#49367)
This commit is contained in:
parent
ab21f5981f
commit
f8c0e6e02f
|
@ -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' ],
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: dev
|
||||
|
||||
E2E: enable slow tests reporting for blocks E2E tests.
|
Loading…
Reference in New Issue