blob: 448b15e7b61644bfcce63c1f20da47791f48d9a4 (
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(),
"run",
"--allow-all",
"--unstable",
"run_coverage.ts",
],
});
await process.status();
process.close();
});
|