2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00

dont instantiate the start function with a function as the options - DK/MW

This commit is contained in:
Mathew Woods 2016-10-20 10:36:55 -05:00 committed by Fabian Arndt
parent bdbea069ad
commit c694bee8f5

View File

@ -5,7 +5,9 @@ var io = require('socket.io-client');
describe('authorizer', function () {
//start and stop the server
before(fixture.start);
before(done => {
fixture.start({ }, done)
});
after(fixture.stop);
describe('when the user is not logged in', function () {