From c694bee8f550f4412670c4c1dc97eeeff37ddbe9 Mon Sep 17 00:00:00 2001 From: Mathew Woods Date: Thu, 20 Oct 2016 10:36:55 -0500 Subject: [PATCH] dont instantiate the start function with a function as the options - DK/MW --- test/authorizer.test.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/authorizer.test.js b/test/authorizer.test.js index 654c0ae..b619ecb 100644 --- a/test/authorizer.test.js +++ b/test/authorizer.test.js @@ -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 () {