Skip to content

Commit e66c685

Browse files
committed
Switch to using const vs function
1 parent 7381ca2 commit e66c685

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ out
77
coverage
88
.next
99
storybook-static
10-
test-results
10+
test-results

site/e2e/globalSetup.ts

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

3-
async function globalSetup(config: FullConfig): Promise<void> {
3+
const globalSetup = async (config: FullConfig): Promise<void> => {
44
// Grab the 'baseURL' from the webserver (`coderd`)
55
const { baseURL } = config.projects[0].use
66

0 commit comments

Comments
 (0)