1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-27 17:49:08 -05:00
denoland-deno/examples/test.ts

24 lines
649 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-03-06 16:39:50 -05:00
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
/** Example of how to do basic tests */
2019-04-24 07:41:23 -04:00
test(function t1(): void {
assertEquals("hello", "hello");
});
2019-04-24 07:41:23 -04:00
test(function t2(): void {
assertEquals("world", "world");
});
/** A more complicated test that runs a subprocess. */
2019-04-24 07:41:23 -04:00
test(async function catSmoke(): Promise<void> {
const p = run({
2019-05-04 11:33:50 -04:00
args: ["deno", "run", "--allow-read", "examples/cat.ts", "README.md"],
stdout: "piped"
});
const s = await p.status();
assertEquals(s.code, 0);
});