From 201ff7be466e9b884e80b6403290a8a6268bcd7f Mon Sep 17 00:00:00 2001 From: Christian Dangl Date: Wed, 27 Sep 2023 14:55:55 +0200 Subject: [PATCH] NTR: update cypress pos tests --- .../e2e/storefront/checkout/checkout-success.cy.js | 13 ------------- .../e2e/storefront/payment-methods/pos.cy.js | 2 ++ 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/tests/Cypress/cypress/e2e/storefront/checkout/checkout-success.cy.js b/tests/Cypress/cypress/e2e/storefront/checkout/checkout-success.cy.js index f4a3ca270..493bab65d 100644 --- a/tests/Cypress/cypress/e2e/storefront/checkout/checkout-success.cy.js +++ b/tests/Cypress/cypress/e2e/storefront/checkout/checkout-success.cy.js @@ -167,19 +167,6 @@ context("Checkout Tests", () => { }) - it('C1341120: Pay with POS Terminal', () => { - - scenarioDummyBasket.execute(); - - paymentAction.switchPaymentMethod('POS Terminal'); - - shopware.prepareDomainChange(); - checkout.placeOrderOnConfirm(); - - cy.url().should('include', '/mollie/pos/checkout?sw='); - - cy.contains('Follow the instructions on the terminal'); - }) }) }) diff --git a/tests/Cypress/cypress/e2e/storefront/payment-methods/pos.cy.js b/tests/Cypress/cypress/e2e/storefront/payment-methods/pos.cy.js index bbf8727b2..cb79d8dba 100644 --- a/tests/Cypress/cypress/e2e/storefront/payment-methods/pos.cy.js +++ b/tests/Cypress/cypress/e2e/storefront/payment-methods/pos.cy.js @@ -65,6 +65,8 @@ describe('POS Terminals', () => { shopware.prepareDomainChange(); checkout.placeOrderOnConfirm(); + cy.url().should('include', '/mollie/pos/checkout?sw='); + cy.contains('Follow the instructions on the terminal'); }) })