Skip top flaky tests (#51510)

* Skip top flaky tests

* Add changefile(s) from automation for the following project(s): woocommerce-blocks

---------

Co-authored-by: Jon Lane <jon.lane@automattic.com>
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Jonathan Lane 2024-09-18 09:43:12 -07:00 committed by GitHub
parent df37ccf8c5
commit 9d135ee2f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 4 deletions

View File

@ -184,7 +184,7 @@ test.describe( 'Merchant → Local Pickup Settings', () => {
).toBeVisible(); ).toBeVisible();
} ); } );
test( 'updating the title in WC Settings updates the local pickup text in the block and vice/versa', async ( { test.skip( 'updating the title in WC Settings updates the local pickup text in the block and vice/versa', async ( {
page, page,
localPickupUtils, localPickupUtils,
admin, admin,

View File

@ -87,7 +87,11 @@ test.describe( 'Product Collection', () => {
await admin.createNewPost(); await admin.createNewPost();
} ); } );
test( 'does not render', async ( { page, editor, pageObject } ) => { test.skip( 'does not render', async ( {
page,
editor,
pageObject,
} ) => {
await pageObject.insertProductCollection(); await pageObject.insertProductCollection();
await pageObject.chooseCollectionInPost( 'featured' ); await pageObject.chooseCollectionInPost( 'featured' );
await pageObject.addFilter( 'Price Range' ); await pageObject.addFilter( 'Price Range' );

View File

@ -235,7 +235,7 @@ test.describe( 'Product Collection registration', () => {
await expect( previewButtonLocator ).toBeHidden(); await expect( previewButtonLocator ).toBeHidden();
} ); } );
test( 'Should display properly in Product Catalog template', async ( { test.skip( 'Should display properly in Product Catalog template', async ( {
pageObject, pageObject,
editor, editor,
} ) => { } ) => {
@ -357,7 +357,7 @@ test.describe( 'Product Collection registration', () => {
} ); } );
} ); } );
test( 'Product picker should be shown when selected product is deleted', async ( { test.skip( 'Product picker should be shown when selected product is deleted', async ( {
pageObject, pageObject,
admin, admin,
editor, editor,

View File

@ -0,0 +1,4 @@
Significance: patch
Type: tweak
Comment: This PR skips 4 e2e tests and makes no other changes