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

Disable cat.ts test because it's broken on Windows.

Original: 8ad47e3584
This commit is contained in:
Ryan Dahl 2019-01-24 13:23:45 -05:00
parent 73d5d7c680
commit deedb5e84e

View file

@ -11,6 +11,7 @@ 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"],
@ -19,3 +20,4 @@ test(async function catSmoke() {
const s = await p.status();
assertEqual(s.code, 0);
});
*/