Skip to content

Commit 730ad2d

Browse files
committed
remove incorrect equal sign from snippets
1 parent 7ee6154 commit 730ad2d

File tree

1 file changed

+8
-24
lines changed

1 file changed

+8
-24
lines changed

tests/steps/checkout.steps.ts

Lines changed: 8 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,23 @@
11
import { Given, When, Then } from "@cucumber/cucumber";
22

3-
When("user clicks shopping cart icon", async function () {
3+
When("user clicks shopping cart icon", async function () {});
44

5-
});
5+
When("user click proceed to checkout button", async function () {});
66

7-
When("user click proceed to checkout button", async function () {
8-
9-
});
10-
11-
When("user logs in", async function () {
12-
13-
});
7+
When("user logs in", async function () {});
148

159
When(
1610
"user fills in the shipping address details and click proceeds to checkout button",
17-
async function () {
18-
19-
}
11+
async function () {}
2012
);
2113

22-
When("user select payment method <{string}>", async function (string) {
23-
24-
});
14+
When("user select payment method <{string}>", async function (string) {});
2515

2616
When(
2717
"user enters valid payment details for <{string}>",
28-
async function (string) {
29-
=
30-
}
18+
async function (string) {}
3119
);
3220

33-
When("user clicks confirm button", async function () {
34-
35-
});
36-
37-
Then("user should see an order confirmation message", async function () {
21+
When("user clicks confirm button", async function () {});
3822

39-
});
23+
Then("user should see an order confirmation message", async function () {});

0 commit comments

Comments
 (0)