Skip to content

Commit

Permalink
reporter now reports only real errors not more errors on summary
Browse files Browse the repository at this point in the history
  • Loading branch information
azendal committed Oct 21, 2011
1 parent bcc29f0 commit 39d75db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tellurium.js
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ Class(Tellurium.Reporter, 'Firebug')({
this.suite(suite);
console.info('Total: ', this.totalSpecs);
console.info('Passed: ', this.passedSpecs);
console.error('Failed: ', this.failedSpecs);
console.info('%cFailed: ' + this.failedSpecs, 'background-color:#FFEBEB; color : #FF2424');
console.warn('Pending: ', this.pendingSpecs);
console.log('End')
},
Expand Down

0 comments on commit 39d75db

Please sign in to comment.