summaryrefslogtreecommitdiff
path: root/cli/tests/unit/process_test.ts
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-04-21 00:20:33 +0200
committerGitHub <noreply@github.com>2022-04-21 00:20:33 +0200
commit8a7539cab36699465ec6e37455c54fa86f3c0cbe (patch)
treec3df15f3b673d1ec1a9c4ffada1a9274e3aca942 /cli/tests/unit/process_test.ts
parent8b258070542a81d217226fe832b26d81cf20113d (diff)
feat(runtime): two-tier subprocess API (#11618)
Diffstat (limited to 'cli/tests/unit/process_test.ts')
-rw-r--r--cli/tests/unit/process_test.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/tests/unit/process_test.ts b/cli/tests/unit/process_test.ts
index e4e2cc3c5..5acb92226 100644
--- a/cli/tests/unit/process_test.ts
+++ b/cli/tests/unit/process_test.ts
@@ -557,8 +557,9 @@ Deno.test(
const obj = JSON.parse(new TextDecoder().decode(await p.output()));
- // can't check for object equality because the OS may set additional env vars for processes
- // so we check if PATH isn't present as that is a common env var across OS's and isn't set for processes.
+ // can't check for object equality because the OS may set additional env
+ // vars for processes, so we check if PATH isn't present as that is a common
+ // env var across OS's and isn't set for processes.
assertEquals(obj.FOO, "23147");
assert(!("PATH" in obj));