Files
socket.io/test/engine.io-client.js
Roman Shtylman af1be0f46a add zuul support for easier browser testing
To run tests in a local browser:
zuul --local 8080 -- test/index.js

To run tests in the cloud via saucelabs:
zuul -- test/index.js
2013-11-18 15:15:15 -05:00

12 lines
214 B
JavaScript

var expect = require('expect.js');
var eio = require('../');
describe('engine.io-client', function () {
it('should expose protocol number', function () {
expect(eio.protocol).to.be.a('number');
});
});