Skip to content

Commit 18f21da

Browse files
committed
Fix lint issues
1 parent 8af7d02 commit 18f21da

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

site/e2e/globalSetup.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import { FullConfig, request } from "@playwright/test"
22

3-
async function globalSetup(config: FullConfig) {
3+
async function globalSetup(config: FullConfig): Promise<void> {
44
const { baseURL } = config.projects[0].use
5-
console.log(" -- Starting global setup: " + baseURL)
65

76
// Create a context that will issue http requests.
87
const context = await request.newContext({
@@ -18,8 +17,6 @@ async function globalSetup(config: FullConfig) {
1817
organization: "acme-corp",
1918
},
2019
})
21-
22-
console.log("-- Created initial user.")
2320
}
2421

2522
export default globalSetup

0 commit comments

Comments
 (0)