Fix duplicate beforeEach() hook

This commit is contained in:
Pierre Ossman 2017-10-14 12:58:25 +02:00
parent f8318361b1
commit facf0b7027
1 changed files with 4 additions and 12 deletions

View File

@ -556,12 +556,11 @@ describe('Remote Frame Buffer Protocol Client', function() {
describe('Protocol Initialization States', function () {
describe('ProtocolVersion', function () {
var client;
beforeEach(function () {
this.clock = sinon.useFakeTimers();
});
afterEach(function () {
this.clock.restore();
client = make_rfb();
client.connect('wss://host:8675');
client._sock._websocket._open();
});
function send_ver (ver, client) {
@ -638,13 +637,6 @@ describe('Remote Frame Buffer Protocol Client', function() {
});
});
var client;
beforeEach(function () {
client = make_rfb();
client.connect('wss://host:8675');
client._sock._websocket._open();
});
it('should handle two step repeater negotiation', function () {
client._repeaterID = '\x01\x02\x03\x04\x05';