From 87388ae18adba7c09ca22d76210469037f5b8a58 Mon Sep 17 00:00:00 2001 From: philipp Date: Sun, 3 Mar 2024 21:35:42 +0100 Subject: [PATCH] increase waiting... --- frontend/tests/log.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/tests/log.spec.ts b/frontend/tests/log.spec.ts index d7a2cba..b2a740a 100644 --- a/frontend/tests/log.spec.ts +++ b/frontend/tests/log.spec.ts @@ -54,7 +54,7 @@ test('Cox can start and finish trip', async ({ page }) => { await page.locator('div:nth-child(2) > .border-0').click(); await page.getByRole('combobox', { name: 'Destination' }).click(); await page.getByRole('combobox', { name: 'Destination' }).fill('Ottensheim'); - await page.waitForTimeout(60000); + await page.waitForTimeout(120000); await page.getByRole('button', { name: 'Ausfahrt beenden' }).click(); await expect(page.locator('body')).toContainText('Ausfahrt korrekt eingetragen'); });