aboutsummaryrefslogtreecommitdiff
path: root/test/js/third_party/socket.io/socket.io-namespaces.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/js/third_party/socket.io/socket.io-namespaces.test.ts')
-rw-r--r--test/js/third_party/socket.io/socket.io-namespaces.test.ts22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/js/third_party/socket.io/socket.io-namespaces.test.ts b/test/js/third_party/socket.io/socket.io-namespaces.test.ts
index 87df24a57..306ebf66e 100644
--- a/test/js/third_party/socket.io/socket.io-namespaces.test.ts
+++ b/test/js/third_party/socket.io/socket.io-namespaces.test.ts
@@ -172,7 +172,7 @@ describe("namespaces", () => {
});
});
- it("should work with `of` second param", done => {
+ it.skip("should work with `of` second param", done => {
const io = new Server(0);
const chat = createClient(io, "/chat");
const news = createClient(io, "/news");
@@ -206,7 +206,7 @@ describe("namespaces", () => {
});
});
- it("should disconnect upon transport disconnection", done => {
+ it.skip("should disconnect upon transport disconnection", done => {
const io = new Server(0);
const chat = createClient(io, "/chat");
const news = createClient(io, "/news");
@@ -242,7 +242,7 @@ describe("namespaces", () => {
});
});
- it("should fire a `disconnecting` event just before leaving all rooms", done => {
+ it.skip("should fire a `disconnecting` event just before leaving all rooms", done => {
const io = new Server(0);
const socket = createClient(io);
const timeout = setTimeout(() => {
@@ -283,7 +283,7 @@ describe("namespaces", () => {
});
});
- it("should return error connecting to non-existent namespace", done => {
+ it.skip("should return error connecting to non-existent namespace", done => {
const io = new Server(0);
const socket = createClient(io, "/doesnotexist");
const timeout = setTimeout(() => {
@@ -301,7 +301,7 @@ describe("namespaces", () => {
});
});
- it("should not reuse same-namespace connections", done => {
+ it.skip("should not reuse same-namespace connections", done => {
const io = new Server(0);
const clientSocket1 = createClient(io);
const clientSocket2 = createClient(io);
@@ -319,7 +319,7 @@ describe("namespaces", () => {
});
});
- it("should find all clients in a namespace", done => {
+ it.skip("should find all clients in a namespace", done => {
const io = new Server(0);
const chatSids: string[] = [];
let otherSid: SocketId | null = null;
@@ -355,7 +355,7 @@ describe("namespaces", () => {
}
});
- it("should find all clients in a namespace room", done => {
+ it.skip("should find all clients in a namespace room", done => {
const io = new Server(0);
let chatFooSid: SocketId | null = null;
let chatBarSid: SocketId | null = null;
@@ -401,7 +401,7 @@ describe("namespaces", () => {
}
});
- it("should find all clients across namespace rooms", done => {
+ it.skip("should find all clients across namespace rooms", done => {
const io = new Server(0);
let chatFooSid: SocketId | null = null;
let chatBarSid: SocketId | null = null;
@@ -678,7 +678,7 @@ describe("namespaces", () => {
});
describe("dynamic namespaces", () => {
- it("should allow connections to dynamic namespaces with a regex", done => {
+ it.skip("should allow connections to dynamic namespaces with a regex", done => {
const io = new Server(0);
const socket = createClient(io, "/dynamic-101");
const timeout = setTimeout(() => {
@@ -724,7 +724,7 @@ describe("namespaces", () => {
});
});
- it("should allow connections to dynamic namespaces with a function", done => {
+ it.skip("should allow connections to dynamic namespaces with a function", done => {
const io = new Server(0);
const socket = createClient(io, "/dynamic-101");
const timeout = setTimeout(() => {
@@ -848,7 +848,7 @@ describe("namespaces", () => {
io.of(/^\/dynamic-\d+$/);
});
- it("should allow a client to connect to a cleaned up namespace", done => {
+ it.skip("should allow a client to connect to a cleaned up namespace", done => {
const io = new Server(0, { cleanupEmptyChildNamespaces: true });
const c1 = createClient(io, "/dynamic-101");
const timeout = setTimeout(() => {