Skip to content

Commit

Permalink
fix(runner): Make process kill timeout configurable - Fix Build
Browse files Browse the repository at this point in the history
Fixing build (Writing value of 2000 in case of variable not being initialized)
Closes #2447
  • Loading branch information
vivganes committed Jan 12, 2017
1 parent ffaa054 commit a128e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/launchers/process.js
Expand Up @@ -5,7 +5,7 @@ var env = process.env
var ProcessLauncher = function (spawn, tempDir, timer, processKillTimeout) {
var self = this
var onExitCallback
var killTimeout = processKillTimeout
var killTimeout = processKillTimeout || 2000

this._tempDir = tempDir.getPath('/karma-' + this.id.toString())

Expand Down

0 comments on commit a128e5c

Please sign in to comment.