You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.toThrow("Unable to connect to the server with any of the available transports. WebSockets failed: Error: WebSocket failed to connect. "+
233
+
.toThrow("Unable to connect to the server with any of the available transports. Error: WebSockets failed: Error: WebSocket failed to connect. "+
234
234
"The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, "+
235
235
"or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled. ServerSentEvents failed: Error: 'ServerSentEvents' is disabled by the client. LongPolling failed: Error: 'LongPolling' is disabled by the client.");
"Failed to start the transport 'WebSockets': Error: WebSocket failed to connect. The connection could not be found on the server, "+
241
241
"either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled.",
242
-
"Failed to start the connection: Error: Unable to connect to the server with any of the available transports. WebSockets failed: "+
242
+
"Failed to start the connection: Error: Unable to connect to the server with any of the available transports. Error: WebSockets failed: "+
243
243
"Error: WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled. ServerSentEvents failed: Error: 'ServerSentEvents' is disabled by the client. LongPolling failed: Error: 'LongPolling' is disabled by the client.");
.toThrow("Unable to connect to the server with any of the available transports. WebSockets failed: Error: Don't allow Websockets. ServerSentEvents failed: Error: Don't allow ServerSentEvents. LongPolling failed: Error: 'LongPolling' is disabled by the client.");
269
+
.toThrow("Unable to connect to the server with any of the available transports. Error: WebSockets failed: Error: Don't allow Websockets. Error: ServerSentEvents failed: Error: Don't allow ServerSentEvents. LongPolling failed: Error: 'LongPolling' is disabled by the client.");
270
270
271
271
expect(negotiateCount).toEqual(2);
272
272
},
273
273
"Failed to start the transport 'WebSockets': Error: Don't allow Websockets.",
274
274
"Failed to start the transport 'ServerSentEvents': Error: Don't allow ServerSentEvents.",
275
-
"Failed to start the connection: Error: Unable to connect to the server with any of the available transports. WebSockets failed: Error: Don't allow Websockets. ServerSentEvents failed: Error: Don't allow ServerSentEvents. LongPolling failed: Error: 'LongPolling' is disabled by the client.");
275
+
"Failed to start the connection: Error: Unable to connect to the server with any of the available transports. Error: WebSockets failed: Error: Don't allow Websockets. "+
276
+
"Error: ServerSentEvents failed: Error: Don't allow ServerSentEvents. LongPolling failed: Error: 'LongPolling' is disabled by the client.");
.toEqual(newError("Unable to connect to the server with any of the available transports. ServerSentEvents failed: Error: EventSource constructor called."));
1335
+
.toEqual(newError("Unable to connect to the server with any of the available transports. Error: ServerSentEvents failed: Error: EventSource constructor called."));
"Failed to start the transport 'ServerSentEvents': Error: EventSource constructor called.",
1339
-
"Failed to start the connection: Error: Unable to connect to the server with any of the available transports. ServerSentEvents failed: Error: EventSource constructor called.");
1340
+
"Failed to start the connection: Error: Unable to connect to the server with any of the available transports. Error: ServerSentEvents failed: Error: EventSource constructor called.");
1340
1341
});
1341
1342
1342
1343
it("uses WebSocket constructor from options if provided",async()=>{
0 commit comments