Skip to content

Commit

Permalink
[chore] Bump engine.io to version 2.0.0 (socketio#2832)
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Jan 23, 2017
1 parent 5ae65b5 commit ba3961e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
},
"dependencies": {
"debug": "2.3.3",
"engine.io": "1.8.2",
"engine.io": "2.0.0",
"has-binary": "0.1.7",
"object-assign": "4.1.0",
"socket.io-adapter": "0.5.0",
"socket.io-client": "1.7.2",
"socket.io-client": "socketio/socket.io-client",
"socket.io-parser": "2.3.1"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions test/socket.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ describe('socket.io', function(){
request.get('http://localhost:54013/socket.io/default/')
.query({ transport: 'polling' })
.end(function (err, res) {
expect(res.status).to.be(400);
expect(res.status).to.be(403);
done();
});
});
Expand All @@ -262,7 +262,7 @@ describe('socket.io', function(){
.query({ transport: 'polling' })
.set('origin', 'http://herp.derp')
.end(function (err, res) {
expect(res.status).to.be(400);
expect(res.status).to.be(403);
done();
});
});
Expand Down Expand Up @@ -305,7 +305,7 @@ describe('socket.io', function(){
.set('origin', 'http://herp.derp')
.query({ transport: 'polling' })
.end(function (err, res) {
expect(res.status).to.be(400);
expect(res.status).to.be(403);
done();
});
});
Expand Down Expand Up @@ -357,7 +357,7 @@ describe('socket.io', function(){
.set('origin', 'http://foo.example')
.query({ transport: 'polling' })
.end(function (err, res) {
expect(res.status).to.be(400);
expect(res.status).to.be(403);
done();
});
});
Expand Down

0 comments on commit ba3961e

Please sign in to comment.