Skip to content

Commit 2a89eb5

Browse files
kristof-lowdougwilson
authored andcommittedFeb 19, 2024·
tests: fix handling multiple callbacks
closes #5233
1 parent 59aae76 commit 2a89eb5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎test/Router.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -606,8 +606,8 @@ describe('Router', function(){
606606
var req2 = { url: '/foo/10/bar', method: 'get' };
607607
var router = new Router();
608608
var sub = new Router();
609+
var cb = after(2, done)
609610

610-
done = after(2, done);
611611

612612
sub.get('/bar', function(req, res, next) {
613613
next();
@@ -626,14 +626,14 @@ describe('Router', function(){
626626
assert.ifError(err);
627627
assert.equal(req1.ms, 50);
628628
assert.equal(req1.originalUrl, '/foo/50/bar');
629-
done();
629+
cb()
630630
});
631631

632632
router.handle(req2, {}, function(err) {
633633
assert.ifError(err);
634634
assert.equal(req2.ms, 10);
635635
assert.equal(req2.originalUrl, '/foo/10/bar');
636-
done();
636+
cb()
637637
});
638638
});
639639
});

‎test/app.router.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ describe('app.router', function(){
896896

897897
request(app)
898898
.get('/foo.json')
899-
.expect(200, 'foo as json', done)
899+
.expect(200, 'foo as json', cb)
900900
})
901901
})
902902

‎test/app.use.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('app', function(){
5757

5858
request(app)
5959
.get('/forum')
60-
.expect(200, 'forum', done)
60+
.expect(200, 'forum', cb)
6161
})
6262

6363
it('should set the child\'s .parent', function(){

0 commit comments

Comments
 (0)
Please sign in to comment.