Skip to content

Commit

Permalink
fix: do not kill process on completion
Browse files Browse the repository at this point in the history
  • Loading branch information
devoto13 committed Mar 10, 2022
1 parent f068854 commit c411e99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Server extends KarmaEventEmitter {
super()
cliOptionsOrConfig = cliOptionsOrConfig || {}
this.log = logger.create('karma-server')
done = helper.isFunction(done) ? done : process.exit
done = helper.isFunction(done) ? done : () => null
this.loadErrors = []

let config
Expand Down

0 comments on commit c411e99

Please sign in to comment.