From 673bdd03529e37ffe8367b5c38a8214ff54824d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 19 Feb 2019 00:32:57 +0100 Subject: [PATCH] Reenable cat.ts test (denoland/deno_std#197) Original: https://github.com/denoland/deno_std/commit/271f7cc76db479dae6eb8dcbdc23ddf3e240f973 --- examples/test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/test.ts b/examples/test.ts index 79a90827ae..65ff7efa12 100644 --- a/examples/test.ts +++ b/examples/test.ts @@ -12,13 +12,11 @@ test(function t2() { }); /** A more complicated test that runs a subprocess. */ -/* TODO re-enable this test. Seems to be broken on Windows. test(async function catSmoke() { const p = run({ - args: ["deno", "examples/cat.ts", "README.md"], + args: ["deno", "--allow-read", "examples/cat.ts", "README.md"], stdout: "piped" }); const s = await p.status(); assertEqual(s.code, 0); }); -*/