Skip to content

Commit ad4a70c

Browse files
committed
Use warn log level for integration tests
Just to limit all the noise from code-server's startup output.
1 parent 4925e97 commit ad4a70c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/integration.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { runCodeServer } from "../../src/node/main"
33
import * as httpserver from "./httpserver"
44

55
export async function setup(argv: string[], configFile?: string): Promise<httpserver.HttpServer> {
6-
argv = ["--bind-addr=localhost:0", ...argv]
6+
argv = ["--bind-addr=localhost:0", "--log=warn", ...argv]
77

88
const cliArgs = parse(argv)
99
const configArgs = parseConfigFile(configFile || "", "test/integration.ts")

0 commit comments

Comments
 (0)