1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-06 22:35:51 -05:00

chore: fmt, reduce unnecessary diffs

This commit is contained in:
Yoshiya Hinosawa 2024-10-03 18:34:40 +09:00
parent 8d41fbc2da
commit 34ae10643b
No known key found for this signature in database
GPG key ID: 9017DB4559488785

View file

@ -1348,9 +1348,7 @@ Deno.test("[node/http] client closing a streaming response doesn't terminate ser
clearInterval(interval!);
});
Deno.test(
"[node/http] client closing a streaming request doesn't terminate server",
async () => {
Deno.test("[node/http] client closing a streaming request doesn't terminate server", async () => {
let interval: number;
let uploadedData = "";
let requestError: Error | null = null;
@ -1428,8 +1426,7 @@ Deno.test(
server.close();
assertEquals(server.listening, false);
clearInterval(interval!);
},
);
});
Deno.test("[node/http] http.request() post streaming body works", {
ignore: true,