Skip to content

Commit 80dddd2

Browse files
committed
Run prettier --write
1 parent a277e8c commit 80dddd2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

site/e2e/playwright.config.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { PlaywrightTestConfig } from "@playwright/test"
22
import * as path from "path"
3-
import * as constants from './constants';
3+
import * as constants from "./constants"
44

55
const config: PlaywrightTestConfig = {
66
testDir: "tests",
@@ -18,7 +18,10 @@ const config: PlaywrightTestConfig = {
1818
// https://playwright.dev/docs/test-advanced#launching-a-development-web-server-during-the-tests
1919
webServer: {
2020
// Run the coder daemon directly.
21-
command: `go run -tags embed ${path.join(__dirname, "../../cmd/coder/main.go")} server --dev --skip-tunnel --dev-admin-email ${constants.email} --dev-admin-password ${constants.password}`,
21+
command: `go run -tags embed ${path.join(
22+
__dirname,
23+
"../../cmd/coder/main.go",
24+
)} server --dev --skip-tunnel --dev-admin-email ${constants.email} --dev-admin-password ${constants.password}`,
2225
port: 3000,
2326
timeout: 120 * 10000,
2427
reuseExistingServer: false,

0 commit comments

Comments
 (0)