Skip to content

Commit

Permalink
fix: set timeout of 0 for giropay test in order to not timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
zenit2001 committed Nov 17, 2023
1 parent 053b2eb commit 60783c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/playwright/fixtures/countriesEUR/DE.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 60783c6

Please sign in to comment.