aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-05-22 12:29:15 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-05-22 12:29:15 -0700
commitb71fa2b6d76ad1e89ebdced88ee0591acb5096be (patch)
tree47e4682f1f8109df622c293d989c6a43c65da100
parent82e762fe2f55a0dac7f545bf4494f94db9d72349 (diff)
downloadbun-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.ts3
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 });