[e2e tests] Remove Github reporter (#50256)

This commit is contained in:
Adrian Moldovan 2024-08-02 09:38:24 +01:00 committed by GitHub
parent c4beb062bf
commit 4e2c72ec23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,6 @@ const config: PlaywrightTestConfig = {
forbidOnly: !! CI,
reporter: process.env.CI
? [
[ 'github' ],
[ 'list' ],
[ './flaky-tests-reporter.ts' ],
[

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
E2E tests: removed Github reporter

View File

@ -44,7 +44,6 @@ const reporter = [
];
if ( process.env.CI ) {
reporter.push( [ 'github' ] );
reporter.push( [ 'buildkite-test-collector/playwright/reporter' ] );
reporter.push( [ `${ testsRootPath }/reporters/skipped-tests.js` ] );
} else {