From 833458efe27a8d368a59a850ac46e5b76b6c994a Mon Sep 17 00:00:00 2001 From: David Sherret Date: Wed, 10 Jul 2024 22:50:49 -0400 Subject: [PATCH] try this --- utils/fetchCached.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/fetchCached.test.ts b/utils/fetchCached.test.ts index b2d2076..d5ba4bf 100644 --- a/utils/fetchCached.test.ts +++ b/utils/fetchCached.test.ts @@ -26,7 +26,6 @@ Deno.test("should error when going above 10mb", async (t) => { }); const addr = server.addr.hostname + ":" + server.addr.port; - console.log("Listening at ", addr); // large await t.step("should error going above 10mb", async () => { @@ -85,4 +84,6 @@ Deno.test("should error when going above 10mb", async (t) => { }); assertEquals(response.kind, "success"); }); + + await server.shutdown(); });