1
0
Fork 0
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:
Yoshiya Hinosawa 2024-10-17 23:44:40 +09:00
parent bd16624612
commit 2e017a8b78
No known key found for this signature in database
GPG key ID: 9017DB4559488785

View file

@ -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;
},
);
});