| Index: third_party/qunit/src/browser_test_harness.js
|
| diff --git a/third_party/qunit/src/browser_test_harness.js b/third_party/qunit/src/browser_test_harness.js
|
| index 78537abc1b8ad3b4e61a0f3cb2ddc59406594458..f7c0fff660151227e278a5dd92a7d32f6c42c68a 100644
|
| --- a/third_party/qunit/src/browser_test_harness.js
|
| +++ b/third_party/qunit/src/browser_test_harness.js
|
| @@ -33,24 +33,19 @@ TestReporter.prototype.init = function(qunit) {
|
| /**
|
| * @param {{ module:string, name: string }} details
|
| */
|
| -TestReporter.prototype.onTestStart_ = function(details) {
|
| - console.log('[===============]');
|
| - console.log('[------RUN------] ' + details.module + '.' + details.name);
|
| -};
|
| +TestReporter.prototype.onTestStart_ = function(details) {};
|
|
|
| /**
|
| * @param {{ module:string, name: string }} details
|
| */
|
| TestReporter.prototype.onTestDone_ = function(details) {
|
| - console.log('[---COMPLETED---] ' + details.module + '.' + details.name);
|
| - console.log('[===============]');
|
| if (this.failedAssertions_.length > 0) {
|
| this.errorMessage_ += ' ' + details.module + '.' + details.name + '\n';
|
| this.errorMessage_ += this.failedAssertions_.map(
|
| function(assertion, index){
|
| return ' ' + (index + 1) + '. ' + assertion.message + '\n' +
|
| ' ' + assertion.source;
|
| - }).join('\n');
|
| + }).join('\n') + '\n';
|
| this.failedAssertions_ = [];
|
| this.failedTestsCount_++;
|
| }
|
|
|