2019-02-07 11:45:47 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-12-19 13:50:48 -05:00
|
|
|
import { run } from "deno";
|
2019-01-01 22:46:17 -05:00
|
|
|
import { test, assertEqual } from "../testing/mod.ts";
|
2018-12-19 13:50:48 -05:00
|
|
|
|
|
|
|
/** Example of how to do basic tests */
|
|
|
|
test(function t1() {
|
|
|
|
assertEqual("hello", "hello");
|
|
|
|
});
|
|
|
|
|
|
|
|
test(function t2() {
|
|
|
|
assertEqual("world", "world");
|
|
|
|
});
|
|
|
|
|
|
|
|
/** A more complicated test that runs a subprocess. */
|
2019-01-24 13:23:45 -05:00
|
|
|
/* TODO re-enable this test. Seems to be broken on Windows.
|
2018-12-19 13:50:48 -05:00
|
|
|
test(async function catSmoke() {
|
|
|
|
const p = run({
|
2019-01-17 13:08:59 -05:00
|
|
|
args: ["deno", "examples/cat.ts", "README.md"],
|
|
|
|
stdout: "piped"
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|
|
|
|
const s = await p.status();
|
|
|
|
assertEqual(s.code, 0);
|
|
|
|
});
|
2019-01-24 13:23:45 -05:00
|
|
|
*/
|