Commit dce879a7d6c for woocommerce
commit dce879a7d6ce16f4d61bec8236fa92af93356767
Author: Karol Manijak <20098064+kmanijak@users.noreply.github.com>
Date: Tue Mar 3 15:20:45 2026 +0100
Temporarily skip Mini Cart flaky tests (#63520)
* Temporarily skip flaky tests
* Add changelog
diff --git a/plugins/woocommerce/changelog/skip-mini-cart-tests b/plugins/woocommerce/changelog/skip-mini-cart-tests
new file mode 100644
index 00000000000..f475ba31333
--- /dev/null
+++ b/plugins/woocommerce/changelog/skip-mini-cart-tests
@@ -0,0 +1,5 @@
+Significance: patch
+Type: dev
+Comment: Skipping E2E test
+
+
diff --git a/plugins/woocommerce/client/blocks/tests/e2e/tests/mini-cart/mini-cart.block_theme.spec.ts b/plugins/woocommerce/client/blocks/tests/e2e/tests/mini-cart/mini-cart.block_theme.spec.ts
index 81876efd02b..abc2d5573c3 100644
--- a/plugins/woocommerce/client/blocks/tests/e2e/tests/mini-cart/mini-cart.block_theme.spec.ts
+++ b/plugins/woocommerce/client/blocks/tests/e2e/tests/mini-cart/mini-cart.block_theme.spec.ts
@@ -301,7 +301,8 @@ test.describe( `${ blockData.name } Block`, () => {
await expect( page ).toHaveURL( /\/checkout\/?$/ );
} );
- test( 'should process badge colors on load', async ( {
+ // eslint-disable-next-line playwright/no-skipped-test
+ test.skip( 'should process badge colors on load', async ( {
page,
frontendUtils,
} ) => {
@@ -335,7 +336,8 @@ test.describe( `${ blockData.name } Block`, () => {
} );
test.describe( `${ blockData.name } Block (admin)`, () => {
- test( 'should update badge colors when header background changes', async ( {
+ // eslint-disable-next-line playwright/no-skipped-test
+ test.skip( 'should update badge colors when header background changes', async ( {
page,
admin,
editor,