blob: e3f0e47ce9464bca66e93f101ba7c3f272154226 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Deno.test("spawn test", async function () {
const process = Deno.run({
cmd: [
Deno.execPath(),
"test",
"--allow-all",
"--unstable",
"test_coverage.ts",
],
});
await process.status();
process.close();
});
|