summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-02-19 00:32:57 +0100
committerRyan Dahl <ry@tinyclouds.org>2019-02-18 18:32:56 -0500
commit673bdd03529e37ffe8367b5c38a8214ff54824d5 (patch)
tree6f8406e43f45a26ed419034b767b654b645c3e58 /examples
parentbdeb6c43afceab913cb02f00e74ebe43377c2fff (diff)
Reenable cat.ts test (denoland/deno_std#197)
Original: https://github.com/denoland/deno_std/commit/271f7cc76db479dae6eb8dcbdc23ddf3e240f973
Diffstat (limited to 'examples')
-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);
});
-*/