Skip to content

Commit fd8e45c

Browse files
grisu48dougwilson
authored andcommittedApr 20, 2022
tests: mark stack overflow as long running
closes #4887
1 parent 708ac4c commit fd8e45c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎test/Router.js

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ describe('Router', function(){
6262
})
6363

6464
it('should not stack overflow with many registered routes', function(done){
65+
this.timeout(5000) // long-running test
66+
6567
var handler = function(req, res){ res.end(new Error('wrong handler')) };
6668
var router = new Router();
6769

0 commit comments

Comments
 (0)
Please sign in to comment.