Skip to content

Commit

Permalink
NTR: fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalij Mik committed May 13, 2024
1 parent 7e47576 commit 0cbb630
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import PaymentMethodsScreenAction from "cypress-mollie/src/actions/screens/Payme
import KBCScreen from "cypress-mollie/src/actions/screens/KBCScreen";
import GiftCardsScreenAction from "cypress-mollie/src/actions/screens/GiftCardsScreen";
import CreditCardScreen from "cypress-mollie/src/actions/screens/CreditCardScreen";
import IDealScreen from "cypress-mollie/src/actions/screens/IDealScreen";


const devices = new Devices();
Expand All @@ -28,6 +29,7 @@ const paymentAction = new PaymentAction();
const mollieSandbox = new MollieSandbox();
const molliePayment = new PaymentScreenAction();
const mollieKBC = new KBCScreen();
const idealScreen = new IDealScreen();
const mollieVoucher = new VoucherScreenAction();
const mollieGiftCards = new GiftCardsScreenAction();
const molliePaymentMethods = new PaymentMethodsScreenAction();
Expand Down Expand Up @@ -136,7 +138,9 @@ context("Checkout Tests", () => {
molliePayment.selectPaid();
molliePaymentMethods.selectPaypal();
molliePayment.selectPaid();

} else if(payment.key === 'ideal'){
idealScreen.selectING();
molliePayment.selectPaid();
} else if (payment.key === 'giftcard') {

mollieGiftCards.selectBeautyCards();
Expand Down

0 comments on commit 0cbb630

Please sign in to comment.