Skip to content

Commit

Permalink
Blocks E2E: Do not report slow tests (#45375)
Browse files Browse the repository at this point in the history
  • Loading branch information
WunderBart committed Mar 7, 2024
1 parent c509f42 commit 8ff89fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/woocommerce-blocks/tests/e2e/playwright.config.ts
Expand Up @@ -26,6 +26,8 @@ const config: ExtendedPlaywrightTestConfig = {
testDir: 'tests',
retries: CI ? 2 : 0,
workers: 1,
// Don't report slow test "files", as we're running our tests in serial.
reportSlowTests: null,
reporter: process.env.CI
? [ [ 'github' ], [ 'list' ], [ 'html' ] ]
: 'list',
Expand Down
@@ -0,0 +1,4 @@
Significance: patch
Type: dev

Disable the `reportSlowTests` option for blocks' E2E tests.

0 comments on commit 8ff89fa

Please sign in to comment.