From ad4a70c684487502a253842933e68bb35f22f08e Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 5 May 2021 17:58:04 -0500 Subject: [PATCH] Use warn log level for integration tests Just to limit all the noise from code-server's startup output. --- test/utils/integration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/integration.ts b/test/utils/integration.ts index 1ad7b44d9..5c4f0cc6a 100644 --- a/test/utils/integration.ts +++ b/test/utils/integration.ts @@ -3,7 +3,7 @@ import { runCodeServer } from "../../src/node/main" import * as httpserver from "./httpserver" export async function setup(argv: string[], configFile?: string): Promise { - argv = ["--bind-addr=localhost:0", ...argv] + argv = ["--bind-addr=localhost:0", "--log=warn", ...argv] const cliArgs = parse(argv) const configArgs = parseConfigFile(configFile || "", "test/integration.ts")