Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
sanders41 committed Aug 10, 2023
1 parent 2a6f9fe commit f0302fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/tests/create_goals.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ test('end to end create goal', async ({ page }) => {
await page.locator('#time-bound').fill(timeBound);
await page.locator('#save-goal-button').click();
await expect(page.locator('#toast-message')).toBeVisible();
await expect(page).toHaveURL('/');
await expect(page).toHaveURL('/', { timeout: 10000 });

await page.getByLabel('account settings').click();
await expect(page.locator('#btn-delete')).toBeVisible();
Expand Down

0 comments on commit f0302fb

Please sign in to comment.