Apply timeout to all tests
This commit is contained in:
parent
043bfa1943
commit
db10af9583
|
@ -203,6 +203,8 @@ async function createVariableProductFixture( baseURL ) {
|
|||
}
|
||||
|
||||
test.describe( 'Add New Variable Product Page', () => {
|
||||
test.describe.configure( { timeout: 180 * 1000 } );
|
||||
|
||||
test.use( { storageState: process.env.ADMINSTATE } );
|
||||
|
||||
test.beforeAll( async ( { baseURL } ) => {
|
||||
|
@ -221,8 +223,6 @@ test.describe( 'Add New Variable Product Page', () => {
|
|||
test( 'can create product, attributes and variations', async ( {
|
||||
page,
|
||||
} ) => {
|
||||
test.setTimeout( 180 * 1000 );
|
||||
|
||||
await test.step( 'Reset the variable product tour.', async () => {
|
||||
await resetVariableProductTour( page );
|
||||
} );
|
||||
|
|
Loading…
Reference in New Issue