1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00

Reenable cat.ts test (denoland/deno_std#197)

Original: 271f7cc76d
This commit is contained in:
Bartek Iwańczuk 2019-02-19 00:32:57 +01:00 committed by Ryan Dahl
parent bdeb6c43af
commit 673bdd0352

View file

@ -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);
});
*/