Skip to content

Commit

Permalink
see if node 7 builds can succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
flenter committed Jun 7, 2017
1 parent a74bf93 commit 79add95
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -917,8 +917,10 @@ describe('server', function () {
it('should trigger transport close before open for ws', function (done) {
var opts = { transports: ['websocket'] };
listen(opts, function (port) {
var url = 'ws://%s:%d'.s('0.0.0.50', port);
var socket = new eioc.Socket(url);
// var url = 'ws://%s:%d'.s('0.0.0.50', port);
// console.log('url', url);
var socket = new eioc.Socket('ws://0.0.0.50:%d'.s(port));
// var socket = new eioc.Socket('ws://0.0.0.50:%d').s(port);
socket.on('open', function () {
done(new Error('Test invalidation'));
});
Expand Down

0 comments on commit 79add95

Please sign in to comment.