Commit 13ecb6adc00 for woocommerce
commit 13ecb6adc00351a98f70937addf31c9be26ec97a
Author: Adrian Moldovan <3854374+adimoldovan@users.noreply.github.com>
Date: Wed Jun 10 10:38:32 2026 +0200
Disable Playwright HTML report auto-open on failure in e2e tests (#65609)
diff --git a/plugins/woocommerce/changelog/disable-playwright-report-on-failure b/plugins/woocommerce/changelog/disable-playwright-report-on-failure
new file mode 100644
index 00000000000..4f73f5cc6c2
--- /dev/null
+++ b/plugins/woocommerce/changelog/disable-playwright-report-on-failure
@@ -0,0 +1,4 @@
+Significance: patch
+Type: dev
+
+
diff --git a/plugins/woocommerce/tests/e2e-pw/playwright.config.ts b/plugins/woocommerce/tests/e2e-pw/playwright.config.ts
index 3955e0da964..38111457e82 100644
--- a/plugins/woocommerce/tests/e2e-pw/playwright.config.ts
+++ b/plugins/woocommerce/tests/e2e-pw/playwright.config.ts
@@ -72,7 +72,7 @@ if ( process.env.CI ) {
'html',
{
outputFolder: `${ TESTS_ROOT_PATH }/playwright-report`,
- open: 'on-failure',
+ open: 'never',
},
] );
}