Fix callback being defined in wrong describe block

This commit is contained in:
Alasdair Smith 2018-02-26 12:27:54 +00:00
parent fd8c61985f
commit 2529ed756a

View file

@ -105,6 +105,12 @@ describe 'SudoModeMiddlewear', ->
describe 'when external auth is being used', ->
beforeEach ->
@externalAuth = true
@call = (cb) =>
@req = {externalAuthenticationSystemUsed: sinon.stub().returns(@externalAuth)}
@res = {redirect: sinon.stub()}
@next = sinon.stub()
@SudoModeMiddlewear.protectPage @req, @res, @next
cb()
it 'should immediately return next with no args', (done) ->
@call () =>