Skip to content

Commit

Permalink
Force clicks
Browse files Browse the repository at this point in the history
  • Loading branch information
ajuvonen committed Dec 13, 2024
1 parent e381b93 commit ca6aa29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/log.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test.only('logs veggies', async ({page}) => {
const toastLocator = page.getByTestId('toast-message');

while ((await toastLocator.count()) > 0) {
await toastLocator.nth(0).click();
await toastLocator.nth(0).click({force: true});

Check warning on line 23 in e2e/log.spec.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected use of { force: true } option
}

await page.getByTestId('navbar-link-settings').click();
Expand Down

0 comments on commit ca6aa29

Please sign in to comment.