Merge pull request #2047 from overleaf/spd-eslint-mocha-arrows

Enforce consistent callback style in mocha tests

GitOrigin-RevId: a64c293dae6926ef5831abe97eaf2044942a5c85
This commit is contained in:
Simon Detheridge
2019-08-07 15:29:25 +00:00
committed by sharelatex
parent 5c32523b53
commit 7588393580
112 changed files with 1461 additions and 1308 deletions
@@ -242,7 +242,9 @@ describe('UserRegistrationHandler', function() {
})
})
it('should call the ReferalAllocator', done => done())
it('should call the ReferalAllocator', function(done) {
return done()
})
})
describe('registerNewUserAndSendActivationEmail', function() {