Files
socket.io/test/engine.io-client.js
Guillermo Rauch 7904c477ef Changed test title
2011-12-21 17:40:56 -08:00

13 lines
270 B
JavaScript

describe('engine.io-client', function () {
it('should expose version number', function () {
expect(eio.version).to.match(/[0-9]+\.[0-9]+\.[0-9]+/);
});
it('should expose protocol number', function () {
expect(eio.protocol).to.be.a('number');
});
});