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
1 changed files with 1 additions and 1 deletions

View File

@ -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);