Jelajahi Sumber

Fix failing test

It only makes sense to send data on a websocket if the readyState is
equal to 1.
Drew DeVault 10 tahun lalu
induk
melakukan
cf0623fffa
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      tests/test.websock.js

+ 1 - 0
tests/test.websock.js

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