Skip to content

Commit

Permalink
updating specs (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
BMayhew authored May 25, 2024
1 parent decb80e commit 66abb68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/checkout/checkout.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test.describe("Basic UI Checks", () => {
await checkoutPage.postcode.fill("12345");

await checkoutPage.proceed3.click();
await checkoutPage.paymentMethod.selectOption("2: Cash on Delivery");
await checkoutPage.paymentMethod.selectOption("Cash on Delivery");

await checkoutPage.finish.click();

Expand Down
2 changes: 1 addition & 1 deletion tests/checkout/checkoutWithApiFixture.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ test.describe("Basic UI Checks With API Fixture", () => {
await checkoutPage.postcode.fill("12345");

await checkoutPage.proceed3.click();
await checkoutPage.paymentMethod.selectOption("2: Cash on Delivery");
await checkoutPage.paymentMethod.selectOption("Cash on Delivery");

await checkoutPage.finish.click();

Expand Down
2 changes: 1 addition & 1 deletion tests/checkout/checkoutWithPageFixture.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test.describe("Basic UI Checks With Page Fixture", () => {
await checkoutPage.postcode.fill("12345");

await checkoutPage.proceed3.click();
await checkoutPage.paymentMethod.selectOption("2: Cash on Delivery");
await checkoutPage.paymentMethod.selectOption("Cash on Delivery");

await checkoutPage.finish.click();

Expand Down

0 comments on commit 66abb68

Please sign in to comment.