Skip to content

Commit

Permalink
Remove click delays
Browse files Browse the repository at this point in the history
  • Loading branch information
DAreRodz committed Sep 5, 2023
1 parent 855cb75 commit dabe2bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/specs/interactivity/router-navigate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ test.describe( 'Router navigate', () => {
await route.continue();
} );

await page.getByTestId( 'link 1' ).click( { delay: 60 } );
await page.getByTestId( 'link 2' ).click( { delay: 60 } );
await page.getByTestId( 'link 1' ).click();
await page.getByTestId( 'link 2' ).click();

await expect( navigations ).toHaveText( '2' );
await expect( status ).toHaveText( 'busy' );
Expand Down

0 comments on commit dabe2bf

Please sign in to comment.