increase waiting...
Some checks failed
CI/CD Pipeline / test (push) Failing after 10m40s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped

This commit is contained in:
philipp 2024-03-03 21:35:42 +01:00
parent f0e9866769
commit 87388ae18a

View File

@ -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.locator('div:nth-child(2) > .border-0').click();
await page.getByRole('combobox', { name: 'Destination' }).click(); await page.getByRole('combobox', { name: 'Destination' }).click();
await page.getByRole('combobox', { name: 'Destination' }).fill('Ottensheim'); 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 page.getByRole('button', { name: 'Ausfahrt beenden' }).click();
await expect(page.locator('body')).toContainText('Ausfahrt korrekt eingetragen'); await expect(page.locator('body')).toContainText('Ausfahrt korrekt eingetragen');
}); });