mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 14:20:56 +00:00
Fix callback being defined in wrong describe block
This commit is contained in:
parent
fd8c61985f
commit
2529ed756a
1 changed files with 6 additions and 0 deletions
|
@ -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 () =>
|
||||
|
|
Loading…
Add table
Reference in a new issue