mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -05:00
reduce formatting diff
This commit is contained in:
parent
bd16624612
commit
2e017a8b78
1 changed files with 45 additions and 49 deletions
|
@ -1651,12 +1651,9 @@ Deno.test("[node/http] In ClientRequest, option.hostname has precedence over opt
|
|||
await responseReceived.promise;
|
||||
});
|
||||
|
||||
Deno.test(
|
||||
"[node/http] upgraded socket closes when the server closed without closing handshake",
|
||||
{
|
||||
ignore: true,
|
||||
},
|
||||
async () => {
|
||||
const IGNORED_Y =
|
||||
"[node/http] upgraded socket closes when the server closed without closing handshake";
|
||||
Deno.test(IGNORED_Y, { ignore: true }, async () => {
|
||||
const clientSocketClosed = Promise.withResolvers<void>();
|
||||
const serverProcessClosed = Promise.withResolvers<void>();
|
||||
|
||||
|
@ -1721,5 +1718,4 @@ Deno.test(
|
|||
|
||||
await clientSocketClosed.promise;
|
||||
await serverProcessClosed.promise;
|
||||
},
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue