Fix duplicate beforeEach() hook
This commit is contained in:
parent
f8318361b1
commit
facf0b7027
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in New Issue