diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-24 13:23:45 -0500 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-24 13:33:51 -0500 |
| commit | deedb5e84e7878f70f652059dabace3ec64e2eda (patch) | |
| tree | 393453b958297423b8c13b1ed2d4d5c4e2fc47eb | |
| parent | 73d5d7c680d3973b8ca8c9eaf535918790757ee9 (diff) | |
Disable cat.ts test because it's broken on Windows.
Original: https://github.com/denoland/deno_std/commit/8ad47e358426b71d3e2508c0d4ab00f241ebd4eb
| -rw-r--r-- | examples/test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/test.ts b/examples/test.ts index 8d16e1703..58013c70b 100644 --- a/examples/test.ts +++ b/examples/test.ts @@ -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); }); +*/ |
