diff options
author | 2023-01-16 21:42:52 -0800 | |
---|---|---|
committer | 2023-01-16 21:42:52 -0800 | |
commit | 38cc9476211d962b450c1d6bc4022a303a1e4040 (patch) | |
tree | 6d09bb26ca1f1bbc1c250f0ab8a5aaf842cf8ab1 | |
parent | 0546aa4fd550b2edc590756e9af23c2011a68003 (diff) | |
download | bun-38cc9476211d962b450c1d6bc4022a303a1e4040.tar.gz bun-38cc9476211d962b450c1d6bc4022a303a1e4040.tar.zst bun-38cc9476211d962b450c1d6bc4022a303a1e4040.zip |
Don't need to skip these now
-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 = ""; |