From 959372b2c402cc2b82d2578234ca383114963392 Mon Sep 17 00:00:00 2001 From: Anton Nesterov Date: Sat, 11 Feb 2023 14:19:00 +0300 Subject: [PATCH] fix: kill/close process --- tests/mod_test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/mod_test.ts b/tests/mod_test.ts index 5088f56..65b15d2 100644 --- a/tests/mod_test.ts +++ b/tests/mod_test.ts @@ -74,7 +74,7 @@ test("mod", async (t) => { }); }); -test("pickit: cmd line interface", async () => { +test("cmd line interface", async () => { const p = await Deno.run({ cmd: [ "deno", @@ -90,4 +90,5 @@ test("pickit: cmd line interface", async () => { const status = await p.status(); assert(status.success); await Deno.remove("daisyui", { recursive: true }); + await p.close(); });