Skip to content

Commit 7308f77

Browse files
committed
remove import
1 parent 29bf87a commit 7308f77

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/steps/login.steps.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import settings from "../config/settings.json";
21
import { Given, When, Then } from "@cucumber/cucumber";
32
import dotenv from "dotenv";
43
import path from "path";
@@ -10,7 +9,10 @@ Given("user navigates to the login page", async function () {
109
});
1110

1211
When("user enters valid username and password", async function () {
13-
await this.loginPage.enterCredentials(process.env.EMAIL, process.env.PASSWORD);
12+
await this.loginPage.enterCredentials(
13+
process.env.EMAIL,
14+
process.env.PASSWORD
15+
);
1416
});
1517

1618
When("user click the login button", async function () {

0 commit comments

Comments
 (0)