2019-02-07 11:45:47 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-02-26 00:35:50 -05:00
|
|
|
const { run } = Deno;
|
2019-03-06 16:39:50 -05:00
|
|
|
import { test } from "../testing/mod.ts";
|
2019-03-06 19:42:24 -05:00
|
|
|
import { assertEquals } from "../testing/asserts.ts";
|
2018-12-19 13:50:48 -05:00
|
|
|
|
|
|
|
/** Example of how to do basic tests */
|
2019-04-24 07:41:23 -04:00
|
|
|
test(function t1(): void {
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals("hello", "hello");
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|
|
|
|
|
2019-04-24 07:41:23 -04:00
|
|
|
test(function t2(): void {
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals("world", "world");
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
/** A more complicated test that runs a subprocess. */
|
2019-04-24 07:41:23 -04:00
|
|
|
test(async function catSmoke(): Promise<void> {
|
2018-12-19 13:50:48 -05:00
|
|
|
const p = run({
|
2019-07-29 04:46:21 -04:00
|
|
|
args: [
|
|
|
|
Deno.execPath,
|
|
|
|
"run",
|
|
|
|
"--allow-read",
|
|
|
|
"examples/cat.ts",
|
|
|
|
"README.md"
|
|
|
|
],
|
2019-01-17 13:08:59 -05:00
|
|
|
stdout: "piped"
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|
|
|
|
const s = await p.status();
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(s.code, 0);
|
2018-12-19 13:50:48 -05:00
|
|
|
});
|