From 63f3821863d21b43d5bee896a3efb645baeca791 Mon Sep 17 00:00:00 2001 From: Christian Ewald Date: Fri, 12 Apr 2024 08:45:11 +0000 Subject: [PATCH] Remove PP acceptance test as we can't test it anymore with the new integration --- .../Checkout/paymentPaypal.spec.ts | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/themes/icmaa-imp/test/e2e/integration/Checkout/paymentPaypal.spec.ts diff --git a/src/themes/icmaa-imp/test/e2e/integration/Checkout/paymentPaypal.spec.ts b/src/themes/icmaa-imp/test/e2e/integration/Checkout/paymentPaypal.spec.ts deleted file mode 100644 index 5932f58d12..0000000000 --- a/src/themes/icmaa-imp/test/e2e/integration/Checkout/paymentPaypal.spec.ts +++ /dev/null @@ -1,22 +0,0 @@ -describe('Checkout', () => { - it('as guest customer and use PayPal payment.', () => { - cy.createCartAndGoToCheckout() - cy.checkoutFillPersonalDetails() - cy.checkoutFillAddress() - cy.checkoutFillShipping() - - cy.checkoutFillPayment('CheckoutcomApmPaypal') - - cy.checkoutPlaceOrder(true) - cy.url().should('contain', 'paypal.com') - - /** @todo PayPal is redirecting the whole page and we're losing cypress with that */ - // cy.get('form.proceed').as('ppLoginForm') - // cy.get('@ppLoginForm').find('input[name="login_email"]').clear().type('sb-jr6uf6662196@personal.example.com') - // cy.get('@ppLoginForm').find('input[name="login_password"]').type('imP12QWas') - - // cy.get('@ppLoginForm').find('button#btnLogin').click() - // cy.get('#payment-submit-btn').click() - // cy.isLoggedIn(false) - }) -})