Disable keepalive tests

These are failing because MockSocket doesn't implement an EventTarget
interface like an actual WebSocket does, so we get an exception when
trying to call addEventListener on it. :(

// FREEBIE
This commit is contained in:
lilia 2015-10-11 13:17:12 -07:00
parent 81ebc5ffd7
commit 7414828bb3

View file

@ -100,7 +100,7 @@
}); });
}); });
describe('with a keepalive config', function() { describe.skip('with a keepalive config', function() {
before(function() { window.WebSocket = MockSocket; }); before(function() { window.WebSocket = MockSocket; });
after (function() { window.WebSocket = WebSocket; }); after (function() { window.WebSocket = WebSocket; });
this.timeout(60000); this.timeout(60000);