Skip to content

Commit a4b4615

Browse files
authored
fix: enable colored output in tests (#1298)
1 parent 24496ad commit a4b4615

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,13 @@ export function startLanguageServer(
159159
}
160160
}
161161
const denoEnv = config.get<Record<string, string>>("env");
162+
env["FORCE_COLOR"] = "1";
162163
if (denoEnv) {
163164
Object.assign(env, denoEnv);
164165
}
165166
if (config.get<boolean>("future")) {
166167
env["DENO_FUTURE"] = "1";
167168
}
168-
env["NO_COLOR"] = "1";
169169
env["DENO_V8_FLAGS"] = getV8Flags();
170170

171171
const shell = process.platform === "win32" &&

0 commit comments

Comments
 (0)