Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enabling failing tests
Browse files Browse the repository at this point in the history
zenit2001 committed Oct 7, 2024
1 parent 3b8c818 commit 68a44cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/playwright/fixtures/USD.spec.mjs
Original file line number Diff line number Diff line change
@@ -93,7 +93,7 @@ for (const environment of environments) {
await page.goto(`${environment.urlExtension}`);
});

test.skip('GiftCard Only Success @quick', async () => {
test('GiftCard Only Success @quick', async () => {
await goToBillingWithFullCartGuestUser();
if (environment.name.indexOf('v5') !== -1) {
await checkoutPage.setEmail();
@@ -103,7 +103,7 @@ for (const environment of environments) {
await checkoutPage.expectSuccess();
});

test.skip('GiftCard & Card Success @quick', async () => {
test('GiftCard & Card Success @quick', async () => {
await goToBillingWithFullCartGuestUser(3);
if (environment.name.indexOf('v5') !== -1) {
await checkoutPage.setEmail();

0 comments on commit 68a44cb

Please sign in to comment.