Skip to content

Commit

Permalink
add page reload
Browse files Browse the repository at this point in the history
  • Loading branch information
kt-12 committed Oct 30, 2024
1 parent 2954cf6 commit 09146cf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ test.describe( 'Product Feed Page', () => {
name: 'Set up your accounts',
} )
).toBeVisible();
await productFeedPage.goto();
await page.waitForLoadState( LOAD_STATE.DOM_CONTENT_LOADED );
} );
} );

Expand All @@ -161,7 +163,7 @@ test.describe( 'Product Feed Page', () => {
} );

test( 'Has active product and a campaign; Do not display campaign notice', async () => {
await productFeedPage.goto();
await page.reload();
await page.waitForLoadState( LOAD_STATE.DOM_CONTENT_LOADED );

await expect(
Expand Down

0 comments on commit 09146cf

Please sign in to comment.