We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b87bcd commit 9909641Copy full SHA for 9909641
src/test/node.js
@@ -115,7 +115,9 @@ export default async function testNode (argv, execaOptions) {
115
console.warn(kleur.red('!!! Collecting coverage has hung, killing process')) // eslint-disable-line no-console
116
console.warn(kleur.red('!!! See https://github.com/ipfs/aegir/issues/1206 for more information')) // eslint-disable-line no-console
117
killedWhileCollectingCoverage = true
118
- proc.kill()
+ proc.kill('SIGTERM', {
119
+ forceKillAfterTimeout: 1000
120
+ })
121
}, argv.covTimeout).unref()
122
}
123
})
0 commit comments