[e2e tests] Disable the task list reminder bar in products list (#45772)
Disable the task list reminder bar, it can interfere with the quick actions
This commit is contained in:
parent
1e0be60e7e
commit
d8453be3df
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: dev
|
||||
|
||||
E2E tests: fix issues with quick actions in products list
|
|
@ -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 ( {
|
||||
|
|
Loading…
Reference in New Issue