We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1a1c66 commit bf5897cCopy full SHA for bf5897c
test/socket.io.js
@@ -1511,7 +1511,7 @@ describe('socket.io', function(){
1511
it('should handle very large json', function(done){
1512
this.timeout(30000);
1513
var srv = http();
1514
- var sio = io(srv);
+ var sio = io(srv, { perMessageDeflate: false });
1515
var received = 0;
1516
srv.listen(function(){
1517
var socket = client(srv);
@@ -1538,7 +1538,7 @@ describe('socket.io', function(){
1538
it('should handle very large binary data', function(done){
1539
this.timeout(10000);
1540
1541
1542
1543
1544
0 commit comments