Skip to content

Commit 2a00da2

Browse files
rluvatondougwilson
authored andcommittedJun 4, 2023
tests: use random port in listen test
closes #5162
1 parent 24e4a25 commit 2a00da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/app.listen.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe('app.listen()', function(){
66
it('should wrap with an HTTP server', function(done){
77
var app = express();
88

9-
var server = app.listen(9999, function(){
9+
var server = app.listen(0, function () {
1010
server.close(done)
1111
});
1212
})

0 commit comments

Comments
 (0)
Please sign in to comment.