mirror of
https://github.com/denoland/deno.git
synced 2025-01-07 22:58:24 -05:00
disable leaking test
This commit is contained in:
parent
996eec1276
commit
5cafa9007f
1 changed files with 73 additions and 69 deletions
|
@ -1377,7 +1377,10 @@ Deno.test("[node/http] client closing a streaming response doesn't terminate ser
|
||||||
clearInterval(interval!);
|
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 interval: number;
|
||||||
let uploadedData = "";
|
let uploadedData = "";
|
||||||
let requestError: Error | null = null;
|
let requestError: Error | null = null;
|
||||||
|
@ -1455,7 +1458,8 @@ Deno.test("[node/http] client closing a streaming request doesn't terminate serv
|
||||||
server.close();
|
server.close();
|
||||||
assertEquals(server.listening, false);
|
assertEquals(server.listening, false);
|
||||||
clearInterval(interval!);
|
clearInterval(interval!);
|
||||||
});
|
},
|
||||||
|
);
|
||||||
|
|
||||||
const IGNORED_X = "[node/http] http.request() post streaming body works";
|
const IGNORED_X = "[node/http] http.request() post streaming body works";
|
||||||
Deno.test(IGNORED_X, { ignore: Deno.build.os === "linux" }, async () => {
|
Deno.test(IGNORED_X, { ignore: Deno.build.os === "linux" }, async () => {
|
||||||
|
|
Loading…
Reference in a new issue