Prevent success from showing if no tests or other errors are encountered

This commit is contained in:
Nathan Leniz
2015-01-28 17:32:21 -05:00
parent 9fa0323049
commit d443f92f33

View File

@ -214,10 +214,12 @@ var runTests = function(err, data) {
}
}
});
}
if (allTestsPassed) {
allTestsPassed = false;
showCompletion();
if (allTestsPassed) {
allTestsPassed = false;
showCompletion();
}
}
};