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
pull/749/head
lilia 10 years ago
parent 81ebc5ffd7
commit 7414828bb3

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

Loading…
Cancel
Save