diff options
author | 2023-05-22 12:29:15 -0700 | |
---|---|---|
committer | 2023-05-22 12:29:15 -0700 | |
commit | b71fa2b6d76ad1e89ebdced88ee0591acb5096be (patch) | |
tree | 47e4682f1f8109df622c293d989c6a43c65da100 | |
parent | 82e762fe2f55a0dac7f545bf4494f94db9d72349 (diff) | |
download | bun-b71fa2b6d76ad1e89ebdced88ee0591acb5096be.tar.gz bun-b71fa2b6d76ad1e89ebdced88ee0591acb5096be.tar.zst bun-b71fa2b6d76ad1e89ebdced88ee0591acb5096be.zip |
Skip more tests
-rw-r--r-- | test/js/third_party/socket.io/socket.io.test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/js/third_party/socket.io/socket.io.test.ts b/test/js/third_party/socket.io/socket.io.test.ts index 0b8737ea4..1a4cb7cbf 100644 --- a/test/js/third_party/socket.io/socket.io.test.ts +++ b/test/js/third_party/socket.io/socket.io.test.ts @@ -5,7 +5,8 @@ import { join } from "path"; import { createClient, createPartialDone, getPort, success, fail } from "./support/util.ts"; import { Server } from "socket.io"; -describe("socket", () => { +// skipped due to a macOS bug +describe.skip("socket.io", () => { it.skip("should not fire events more than once after manually reconnecting", done => { const io = new Server(0); const clientSocket = createClient(io, "/", { reconnection: false }); |