Skip to content

Commit

Permalink
Fix tests running out of sockets on Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
jjrv committed Jul 20, 2017
1 parent 7545f0d commit e040de1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ function runTests(port: number, concurrency: number) {
const server = new Server(8080);

server.ready.then(() => Promise.all([
runTests(8080, Infinity),
// runTests(8080, Infinity),
runTests(8080, 2),
runTests(8080, 1)
])).then(
() => server.close()
Expand Down

0 comments on commit e040de1

Please sign in to comment.