diff options
-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 }); |