1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-28 10:09:20 -05:00
denoland-deno/examples/test.ts

23 lines
571 B
TypeScript
Raw Normal View History

2019-02-07 11:45:47 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
const { run } = Deno;
2019-01-01 22:46:17 -05:00
import { test, assertEqual } from "../testing/mod.ts";
/** 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. */
test(async function catSmoke() {
const p = run({
2019-02-18 18:32:57 -05:00
args: ["deno", "--allow-read", "examples/cat.ts", "README.md"],
stdout: "piped"
});
const s = await p.status();
assertEqual(s.code, 0);
});