Skip to content

Commit

Permalink
[e2e tests] Disable the task list reminder bar in products list (#45772)
Browse files Browse the repository at this point in the history
Disable the task list reminder bar, it can interfere with the quick actions
  • Loading branch information
adimoldovan committed Mar 21, 2024
1 parent 1e0be60 commit d8453be
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
@@ -0,0 +1,4 @@
Significance: patch
Type: dev

E2E tests: fix issues with quick actions in products list
Expand Up @@ -25,6 +25,14 @@ baseTest.describe( 'Products > Delete Product', () => {
} );
}
},
page: async ( { page, wcAdminApi }, use ) => {
// Disable the task list reminder bar, it can interfere with the quick actions
await wcAdminApi.post( 'options', {
woocommerce_task_list_reminder_bar_hidden: 'yes',
} );

await use( page );
},
} );

test( 'can delete a product from edit view', async ( {
Expand Down

0 comments on commit d8453be

Please sign in to comment.