From 8a7539cab36699465ec6e37455c54fa86f3c0cbe Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Thu, 21 Apr 2022 00:20:33 +0200 Subject: feat(runtime): two-tier subprocess API (#11618) --- cli/tests/unit/process_test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cli/tests/unit/process_test.ts') 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)); -- cgit v1.2.3