summaryrefslogtreecommitdiff
path: root/cli/tests/unit/os_test.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-09-14 11:46:50 +0100
committerGitHub <noreply@github.com>2020-09-14 12:46:50 +0200
commitf874b83aa06c183400bbe04bc35e87acbaad9699 (patch)
treeecafc9492d78237321ff7abb27877b87610d3e02 /cli/tests/unit/os_test.ts
parent4baf61993cfe0dfd5b2239666565c60f7fda496a (diff)
test(cli/tests/unit): Enable color for js_unit_tests (#7443)
Diffstat (limited to 'cli/tests/unit/os_test.ts')
-rw-r--r--cli/tests/unit/os_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/os_test.ts b/cli/tests/unit/os_test.ts
index 12caed156..a6eb3a760 100644
--- a/cli/tests/unit/os_test.ts
+++ b/cli/tests/unit/os_test.ts
@@ -62,7 +62,7 @@ unitTest(
)`;
const proc = Deno.run({
cmd: [Deno.execPath(), "eval", src],
- env: inputEnv,
+ env: { ...inputEnv, NO_COLOR: "1" },
stdout: "piped",
});
const status = await proc.status();