mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
parent
bdeb6c43af
commit
673bdd0352
1 changed files with 1 additions and 3 deletions
|
@ -12,13 +12,11 @@ test(function t2() {
|
||||||
});
|
});
|
||||||
|
|
||||||
/** A more complicated test that runs a subprocess. */
|
/** A more complicated test that runs a subprocess. */
|
||||||
/* TODO re-enable this test. Seems to be broken on Windows.
|
|
||||||
test(async function catSmoke() {
|
test(async function catSmoke() {
|
||||||
const p = run({
|
const p = run({
|
||||||
args: ["deno", "examples/cat.ts", "README.md"],
|
args: ["deno", "--allow-read", "examples/cat.ts", "README.md"],
|
||||||
stdout: "piped"
|
stdout: "piped"
|
||||||
});
|
});
|
||||||
const s = await p.status();
|
const s = await p.status();
|
||||||
assertEqual(s.code, 0);
|
assertEqual(s.code, 0);
|
||||||
});
|
});
|
||||||
*/
|
|
||||||
|
|
Loading…
Reference in a new issue