From 349a9f843c160f12d58b6d1ad5712864f031625c Mon Sep 17 00:00:00 2001 From: philipp Date: Wed, 24 Apr 2024 07:39:44 +0200 Subject: [PATCH] fix ci --- frontend/tests/log.spec.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/tests/log.spec.ts b/frontend/tests/log.spec.ts index 7692ed1..9aa84f8 100644 --- a/frontend/tests/log.spec.ts +++ b/frontend/tests/log.spec.ts @@ -15,6 +15,7 @@ test("Cox can start and cancel trip", async ({ page }, testInfo) => { await page.getByText("Kaputtes Boot :-( (7 x)").nth(1).click(); await page.getByRole("option", { name: "Joe" }).click(); } else { + await page.getByText('2x').click(); await page.getByText("Joe", { exact: true }).click(); } await page.getByPlaceholder("Ruderer auswählen").click(); @@ -31,6 +32,7 @@ test("Cox can start and cancel trip", async ({ page }, testInfo) => { await expect(page.locator("body")).toContainText( "Ausfahrt erfolgreich hinzugefügt", ); + await page.getByText('2x').click(); await expect(page.locator("body")).toContainText("Joe"); await page.getByRole("link", { name: "Joe" }).click(); @@ -55,6 +57,7 @@ test("Cox can start and finish trip", async ({ page }, testInfo) => { await page.getByText("Kaputtes Boot :-( (7 x)").nth(1).click(); await page.getByRole("option", { name: "Joe" }).click(); } else { + await page.getByText('2x').click(); await page.getByText("Joe", { exact: true }).click(); } await page.getByPlaceholder("Ruderer auswählen").click(); @@ -106,6 +109,7 @@ test("Kiosk can start and cancel trip", async ({ page }, testInfo) => { await page.getByText("Kaputtes Boot :-( (7 x)").nth(1).click(); await page.getByRole("option", { name: "Joe" }).click(); } else { + await page.getByText('2x').click(); await page.getByText("Joe", { exact: true }).click(); } await page.getByPlaceholder("Ruderer auswählen").click(); @@ -139,6 +143,7 @@ test("Kiosk can start and finish trip", async ({ page }, testInfo) => { await page.getByText("Kaputtes Boot :-( (7 x)").nth(1).click(); await page.getByRole("option", { name: "Joe" }).click(); } else { + await page.getByText('2x').click(); await page.getByText("Joe", { exact: true }).click(); } await page.getByPlaceholder("Ruderer auswählen").click();