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

[SFI-537] Update web components to v5.56.0 #1039

Merged
merged 2 commits into from
Jan 24, 2024
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 @@ -96,6 +96,6 @@ module.exports = {
EXTERNAL_PLATFORM_NAME : 'SalesforceCommerceCloud',
EXTERNAL_PLATFORM_VERSION : 'SFRA',

CHECKOUT_COMPONENT_VERSION: '5.44.0',
CHECKOUT_COMPONENT_VERSION: '5.56.0',
VERSION: '23.3.1',
};
3 changes: 2 additions & 1 deletion tests/playwright/fixtures/USD.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ for (const environment of environments) {
await checkoutPage.expectRefusal();
});

test('CashApp Renders', async ({ page }) => {
test.skip('CashApp Renders', async ({ page }) => {
if (environment.name.indexOf("v6") === -1) {
await checkoutPage.setEmail();
};
Expand Down Expand Up @@ -204,6 +204,7 @@ for (const environment of environments) {
test('co-branded BCMC/Maestro oneClick test success', async () => {
await cards.doCardPaymentOneclick(cardData.coBrandedBCMC);
await checkoutPage.completeCheckoutLoggedInUser();
await cards.do3Ds2Verification();
await checkoutPage.expectSuccess();
});
});
Expand Down
2 changes: 2 additions & 0 deletions tests/playwright/fixtures/countriesEUR/BE.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ for (const environment of environments) {
test('Card co-branded BCMC payment success', async () => {
await cards.doCardPayment(cardData.coBrandedBCMC);
await checkoutPage.completeCheckout();
await cards.do3Ds2Verification();
await checkoutPage.expectSuccess();
});

Expand All @@ -50,6 +51,7 @@ for (const environment of environments) {
cardDataInvalid.expirationDate = '0150';
await cards.doCardPayment(cardDataInvalid);
await checkoutPage.completeCheckout();
await cards.do3Ds2Verification();
await checkoutPage.expectRefusal();
});
});
Expand Down
Loading