From 60783c601b07d537c259a41176649a41ed98cac2 Mon Sep 17 00:00:00 2001 From: Zenit Shkreli <69572953+zenit2001@users.noreply.github.com> Date: Fri, 17 Nov 2023 13:40:46 +0100 Subject: [PATCH] fix: set timeout of 0 for giropay test in order to not timeout --- tests/playwright/fixtures/countriesEUR/DE.spec.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/playwright/fixtures/countriesEUR/DE.spec.mjs b/tests/playwright/fixtures/countriesEUR/DE.spec.mjs index e52a3f6a8..1f28570a8 100644 --- a/tests/playwright/fixtures/countriesEUR/DE.spec.mjs +++ b/tests/playwright/fixtures/countriesEUR/DE.spec.mjs @@ -67,7 +67,8 @@ for (const environment of environments) { await checkoutPage.expectRefusal(); }); - test('Giropay Success', async ({ page }) => { + test.only('Giropay Success', async ({ page }) => { + test.setTimeout(0); redirectShopper = new RedirectShopper(page); await redirectShopper.doGiropayPayment(); await checkoutPage.completeCheckout();