Skip to content

Commit

Permalink
#106 timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikgeissler committed Sep 26, 2023
1 parent a4cde7e commit 79f53fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/pupil-form.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ test(`pupil signup form can be submitted after filling all required fields`, asy
timeout: 10000,
})

await page.waitForNavigation()
await page.waitForNavigation({ timeout: 10000 })

// make sure we get to the success page
expect(
Expand Down
2 changes: 1 addition & 1 deletion tests/student-form.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ test(`student signup form can be submitted after filling all required fields`, a
timeout: 10000,
})

await page.waitForNavigation()
await page.waitForNavigation({ timeout: 10000 })

// make sure we get to the success page
expect(
Expand Down

0 comments on commit 79f53fd

Please sign in to comment.