1234567891011121314151617181920212223242526272829303132 |
- describe('Socket', function() {
- describe('constructor', function() {
- });
- it('inherits from EventEmitter');
- describe('#start', function() {
- });
- describe('#_startWebSocket', function() {
- });
- describe('#_startXhrStream', function() {
- });
- describe('#_handleStream', function() {
- });
- describe('#_setHTTPTimeout', function() {
- });
- describe('#send', function() {
- });
- describe('#close', function() {
- });
- describe('#_wsOpen', function() {
- });
- });
|