We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb43d1c commit e680f42Copy full SHA for e680f42
test/fixture/routes/node-compat.ts
@@ -36,7 +36,8 @@ const nodeCompatTests = {
36
},
37
tls: {
38
connect: async () => {
39
- const socket = nodeTLS.connect(443, "1.1.1.1");
+ // TODO: Use a local TLS server for testing
40
+ const socket = nodeTLS.connect(443, "example.com");
41
await new Promise<void>((r) => socket.on("connect", r));
42
socket.end();
43
return true;
0 commit comments