Skip to content

Commit

Permalink
#106 added global timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikgeissler committed Sep 26, 2023
1 parent 611d01a commit 41784e4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/pupil-form.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,8 @@ test(`pupil signup form can be submitted after filling all required fields`, asy
await page.locator(`text=🎉 ⭐ 🎉`, { timeout: 10000 }).textContent(),
).toBe(`🎉 ⭐ 🎉`)
})


test.run({
timeout: 45000
})
4 changes: 4 additions & 0 deletions tests/student-form.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@ test(`student signup form can be submitted after filling all required fields`, a
await page.locator(`text=🎉 ⭐ 🎉`, { timeout: 10000 }).textContent(),
).toBe(`🎉 ⭐ 🎉`)
})

test.run({
timeout: 45000
})

0 comments on commit 41784e4

Please sign in to comment.