exit process after each mocha run

This commit is contained in:
Iuri Matias 2017-07-01 23:22:01 -04:00
parent 9a8a8d7da2
commit ccf78b4ff2
1 changed files with 1 additions and 0 deletions

View File

@ -220,6 +220,7 @@ class Embark {
process.on('exit', function () { process.on('exit', function () {
process.exit(failures); // exit with non-zero status if there were failures process.exit(failures); // exit with non-zero status if there were failures
}); });
process.exit();
}); });
} }