diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/tests/unit_node/http_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/unit_node/http_test.ts b/cli/tests/unit_node/http_test.ts index 2dbada770..baebd4678 100644 --- a/cli/tests/unit_node/http_test.ts +++ b/cli/tests/unit_node/http_test.ts @@ -261,6 +261,7 @@ Deno.test("[node/http] non-string buffer response", { }, async () => { const promise = deferred<void>(); const server = http.createServer((_, res) => { + res.socket!.end(); gzip( Buffer.from("a".repeat(100), "utf8"), {}, |