1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-15 16:43:44 -05:00
denoland-deno/cli/tests/test_run_test_coverage.ts

14 lines
251 B
TypeScript

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();
});