diff --git a/ospec/ospec.js b/ospec/ospec.js index 60c0b66c..f094dfe6 100644 --- a/ospec/ospec.js +++ b/ospec/ospec.js @@ -202,7 +202,10 @@ module.exports = new function init() { status = 1 } } - console.log(results.length + " assertions completed in " + Math.round(new Date - start) + "ms") + console.log( + results.length + " assertions completed in " + Math.round(new Date - start) + "ms, " + + "of which " + results.filter(function(result){return result.error}).length + " failed" + ) if (hasProcess && status === 1) process.exit(1) }