1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 06:46:59 -05:00

remove unnecessary logging

This commit is contained in:
Yoshiya Hinosawa 2024-11-14 19:19:33 +09:00
parent 86c32caccc
commit d5d6d58394
No known key found for this signature in database
GPG key ID: 9017DB4559488785

View file

@ -1020,9 +1020,6 @@ Deno.test(
const socket = (request as any).agent.sockets["localhost:5929:"][0];
socket.on("close", resolve);
});
request.on("socket", (socket) => {
console.log(socket);
});
await promise;
},
);