Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NTR: Remove Klarna Sofort banking #853

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ context("Checkout Failure Tests", () => {

// select giro pay and mark it as "paid"
mollieSandbox.initSandboxCookie();
molliePaymentList.selectSOFORT();
molliePaymentList.selectBankTransfer();
molliePaymentStatus.selectPaid();

cy.url().should('include', '/checkout/finish');
Expand Down Expand Up @@ -102,7 +102,7 @@ context("Checkout Failure Tests", () => {

// select giro pay and mark it as "paid"
mollieSandbox.initSandboxCookie();
molliePaymentList.selectSOFORT();
molliePaymentList.selectBankTransfer();
molliePaymentStatus.selectPaid();

cy.url().should('include', '/checkout/finish');
Expand Down Expand Up @@ -173,7 +173,7 @@ context("Checkout Failure Tests", () => {
}


paymentAction.switchPaymentMethod('SOFORT');
paymentAction.switchPaymentMethod('Banktransfer');

checkout.placeOrderOnEdit();

Expand Down Expand Up @@ -206,7 +206,7 @@ context("Checkout Failure Tests", () => {
cy.contains('We received your order, but the payment was aborted');
}

paymentAction.switchPaymentMethod('SOFORT');
paymentAction.switchPaymentMethod('Banktransfer');

checkout.placeOrderOnEdit();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ const payments = [
{caseId: 'C4115', key: 'klarnapaylater', name: 'Pay later', sanity: false},
{caseId: 'C4117', key: 'klarnasliceit', name: 'Slice it', sanity: false},
{caseId: 'C4118', key: 'ideal', name: 'iDEAL', sanity: false},
{caseId: 'C4116', key: 'sofort', name: 'SOFORT', sanity: false},
{caseId: 'C4120', key: 'eps', name: 'eps', sanity: false},
{caseId: 'C4123', key: 'mistercash', name: 'Bancontact', sanity: false},
{caseId: 'C4125', key: 'przelewy24', name: 'Przelewy24', sanity: false},
Expand Down
Loading