We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c70ad commit bf80becCopy full SHA for bf80bec
lib/vows/reporters/console.js
@@ -42,7 +42,7 @@ this.report = function (data, s) {
42
style = event.honored === event.total ? ('green')
43
: (event.errored === 0 ? 'yellow' : 'red');
44
45
- if (event.time) {
+ if ('time' in event) {
46
puts("\nVerified " + event.total + " vows in " +
47
(event.time + " seconds.\n"));
48
}
0 commit comments