Merge pull request #377 from embark-framework/bug_fix/tests-passing-when-one-fails

stop tests when deploy fails
This commit is contained in:
Iuri Matias 2018-04-24 10:24:13 -04:00 committed by GitHub
commit 5fb3cb3730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ Test.prototype.deployAll = function(contractsConfig, cb) {
], function(err, result) {
if (err) {
console.log('terminating due to error');
process.exit();
process.exit(1);
}
// this should be part of the waterfall and not just something done at the
// end