2020-02-24 08:31:40 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-09-26 11:54:26 -04:00
|
|
|
import { assertStrictEquals } from "../testing/asserts.ts";
|
|
|
|
import { dirname, fromFileUrl } from "../path/mod.ts";
|
2020-09-09 14:57:49 -04:00
|
|
|
|
2020-09-26 11:54:26 -04:00
|
|
|
const moduleDir = dirname(fromFileUrl(import.meta.url));
|
2020-02-24 08:31:40 -05:00
|
|
|
|
|
|
|
Deno.test("[examples/welcome] print a welcome message", async () => {
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
const process = Deno.run({
|
2020-11-20 12:01:58 -05:00
|
|
|
cmd: [Deno.execPath(), "run", "--quiet", "welcome.ts"],
|
2020-09-09 14:57:49 -04:00
|
|
|
cwd: moduleDir,
|
2020-03-28 13:03:49 -04:00
|
|
|
stdout: "piped",
|
2020-02-24 08:31:40 -05:00
|
|
|
});
|
|
|
|
try {
|
2020-03-18 19:25:55 -04:00
|
|
|
const output = await process.output();
|
2020-02-24 08:31:40 -05:00
|
|
|
const actual = decoder.decode(output).trim();
|
2021-01-07 05:51:15 -05:00
|
|
|
const expected = "Welcome to Deno!";
|
2020-06-05 23:43:00 -04:00
|
|
|
assertStrictEquals(actual, expected);
|
2020-02-24 08:31:40 -05:00
|
|
|
} finally {
|
|
|
|
process.close();
|
|
|
|
}
|
|
|
|
});
|