mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
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
12 lines
214 B
JavaScript
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');
|
|
});
|
|
|
|
});
|