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

disable leaking test

This commit is contained in:
Satya Rohith 2024-10-18 00:10:28 +05:30
parent 996eec1276
commit 5cafa9007f
No known key found for this signature in database
GPG key ID: B2705CF40523EB05

View file

@ -1377,7 +1377,10 @@ 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",
{ ignore: true },
async () => {
let interval: number;
let uploadedData = "";
let requestError: Error | null = null;
@ -1455,7 +1458,8 @@ Deno.test("[node/http] client closing a streaming request doesn't terminate serv
server.close();
assertEquals(server.listening, false);
clearInterval(interval!);
});
},
);
const IGNORED_X = "[node/http] http.request() post streaming body works";
Deno.test(IGNORED_X, { ignore: Deno.build.os === "linux" }, async () => {