summaryrefslogtreecommitdiff
path: root/std/examples/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/examples/test.ts')
-rw-r--r--std/examples/test.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/std/examples/test.ts b/std/examples/test.ts
index 641a2ef74..1c817dfd1 100644
--- a/std/examples/test.ts
+++ b/std/examples/test.ts
@@ -21,8 +21,10 @@ Deno.test(async function catSmoke(): Promise<void> {
"examples/cat.ts",
"README.md"
],
- stdout: "piped"
+ stdout: "null",
+ stderr: "null"
});
const s = await p.status();
assertEquals(s.code, 0);
+ p.close();
});