Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit 3692f85

Browse files
authored
Skip the failing test (#9405)
* Skip the failing test * Add an explanation to the skipped test and eslint disable
1 parent 8244d8b commit 3692f85

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tests/e2e/specs/shopper/cart-checkout/checkout.test.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,12 @@ describe( 'Shopper → Checkout', () => {
125125
);
126126
} );
127127

128-
it( 'Switching between local pickup and shipping does not affect the address', async () => {
128+
/**
129+
* Temporarily disable test as it often fails on a pipeline,
130+
* but cannot be reproduced manually.
131+
*/
132+
// eslint-disable-next-line jest/no-disabled-tests
133+
it.skip( 'Switching between local pickup and shipping does not affect the address', async () => {
129134
await shopper.block.emptyCart();
130135
await shopper.block.goToShop();
131136
await shopper.addToCartFromShopPage( SIMPLE_PHYSICAL_PRODUCT_NAME );

0 commit comments

Comments
 (0)