Fix failing test

It only makes sense to send data on a websocket if the readyState is
equal to 1.
This commit is contained in:
Drew DeVault 2015-07-30 10:32:25 -04:00 committed by Samuel Mannehed
parent 2bd1b0e9ca
commit 00f6ddc9e6
1 changed files with 1 additions and 0 deletions

View File

@ -173,6 +173,7 @@ describe('Websock', function() {
it('should actually send on the websocket if the websocket does not have too much buffered', function () {
sock.maxBufferedAmount = 10;
sock._websocket.bufferedAmount = 8;
sock._websocket.readyState = WebSocket.OPEN
sock._sQ = new Uint8Array([1, 2, 3]);
sock._sQlen = 3;
var encoded = sock._encode_message();