diff options
-rw-r--r-- | test/bun.js/socket/node-net.test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/bun.js/socket/node-net.test.ts b/test/bun.js/socket/node-net.test.ts index 504a83496..415b8865d 100644 --- a/test/bun.js/socket/node-net.test.ts +++ b/test/bun.js/socket/node-net.test.ts @@ -83,7 +83,7 @@ describe("net.Socket read", () => { }; } - it.skip( + it( "should work with .connect(port)", runWithServer((server, drain, done) => { var data = ""; @@ -110,7 +110,7 @@ describe("net.Socket read", () => { }), ); - it.skip( + it( "should work with .connect(port, listener)", runWithServer((server, drain, done) => { var data = ""; @@ -136,7 +136,7 @@ describe("net.Socket read", () => { }), ); - it.skip( + it( "should work with .connect(port, host, listener)", runWithServer((server, drain, done) => { var data = ""; |