We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8af7d02 commit 18f21daCopy full SHA for 18f21da
site/e2e/globalSetup.ts
@@ -1,8 +1,7 @@
1
import { FullConfig, request } from "@playwright/test"
2
3
-async function globalSetup(config: FullConfig) {
+async function globalSetup(config: FullConfig): Promise<void> {
4
const { baseURL } = config.projects[0].use
5
- console.log(" -- Starting global setup: " + baseURL)
6
7
// Create a context that will issue http requests.
8
const context = await request.newContext({
@@ -18,8 +17,6 @@ async function globalSetup(config: FullConfig) {
18
17
organization: "acme-corp",
19
},
20
})
21
-
22
- console.log("-- Created initial user.")
23
}
24
25
export default globalSetup
0 commit comments