summaryrefslogtreecommitdiff
path: root/examples/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/test.ts')
-rw-r--r--examples/test.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/test.ts b/examples/test.ts
index 79a90827a..65ff7efa1 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);
});
-*/