Changeset 7704
- Timestamp:
- 03/20/07 06:38:25 (22 months ago)
- Location:
- dojo/trunk/tests
- Files:
-
- 2 modified
-
runner.js (modified) (3 diffs)
-
_browserRunner.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/tests/runner.js
r7702 r7704 298 298 299 299 tests._testCount = 0; 300 tests._groupCount = 0; 300 301 tests._errorCount = 0; 301 302 tests._failureCount = 0; … … 309 310 this._errorCount = 0; 310 311 this._failureCount = 0; 312 this.debug(this._testCount, "tests to run in", this._groupCount, "groups"); 311 313 } 312 314 … … 365 367 // "runTest" method (respectively) when the test is run. 366 368 if(!this._groups[group]){ 369 this._groupCount++; 367 370 this._groups[group] = []; 368 371 this._groups[group].inFlight = 0; -
dojo/trunk/tests/_browserRunner.js
r7703 r7704 73 73 tests._init = (function(oi){ 74 74 return function(){ 75 oi.apply(tests, arguments);76 75 var lb = byId("logBody"); 77 76 if(lb){ … … 81 80 } 82 81 } 82 oi.apply(tests, arguments); 83 83 } 84 84 })(tests._init);