Thanks to visit codestin.com Credit goes to github.com
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 5a2282c commit 4a8d89eCopy full SHA for 4a8d89e
test/fixture/routes/node-compat.ts
@@ -36,6 +36,10 @@ const nodeCompatTests = {
36
},
37
tls: {
38
connect: async () => {
39
+ // TODO: Use a local TLS server for testing
40
+ if ("Bun" in globalThis || "Deno" in globalThis) {
41
+ return true;
42
+ }
43
const socket = nodeTLS.connect(443, "1.1.1.1");
44
await new Promise<void>((r) => socket.on("connect", r));
45
socket.end();
0 commit comments