Skip to content

Commit 04c687b

Browse files
committed
Check for SIGTERM exit code
1 parent 71c79e0 commit 04c687b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fork.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = function (args) {
3232
ps.on('error', reject);
3333

3434
ps.on('exit', function (code) {
35-
if (code > 0) {
35+
if (code > 0 && code !== 143) {
3636
reject();
3737
} else {
3838
resolve(testResults);

0 commit comments

Comments
 (0)