From 41784e471b2faf70ca1f7aade2133d0286404dfd Mon Sep 17 00:00:00 2001 From: root Date: Tue, 26 Sep 2023 13:34:48 +0200 Subject: [PATCH] #106 added global timeout --- tests/pupil-form.test.ts | 5 +++++ tests/student-form.test.ts | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/tests/pupil-form.test.ts b/tests/pupil-form.test.ts index bc35975..e308606 100644 --- a/tests/pupil-form.test.ts +++ b/tests/pupil-form.test.ts @@ -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 +}) \ No newline at end of file diff --git a/tests/student-form.test.ts b/tests/student-form.test.ts index 08cc38b..5e0dba7 100644 --- a/tests/student-form.test.ts +++ b/tests/student-form.test.ts @@ -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 +}) \ No newline at end of file