Changeset 7999
- Timestamp:
- 04/08/07 04:00:24 (21 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/tests/runner.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/tests/runner.js
r7935 r7999 664 664 // summary: 665 665 // runs the specified test group 666 667 666 var tg = this._groups[groupName]; 668 667 if(tg.skip === true){ return; } 669 668 if(this._isArray(tg)){ 670 669 if(idx<=tg.length){ 671 if( !tg.inFlight){670 if((!tg.inFlight)&&(tg.iterated == true)){ 672 671 tests._groupFinished(groupName, (!tg.failures)); 673 }674 return;672 return; 673 } 675 674 } 676 675 tg.inFlight = 0; … … 682 681 if(this._paused){ 683 682 this._currentTest = y; 684 this.debug("PAUSED at ", this._currentGroup, this._currentTest);683 this.debug("PAUSED at:", tg[y].name, this._currentGroup, this._currentTest); 685 684 return; 686 685 } … … 688 687 if(this._paused){ 689 688 this._currentTest = y+1; 689 // this._currentTest = y; 690 690 if(this._currentTest == tg.length){ 691 691 tg.iterated = true; 692 692 } 693 this.debug("PAUSED at ", this._currentGroup, this._currentTest);693 this.debug("PAUSED at:", tg[y].name, this._currentGroup, this._currentTest); 694 694 return; 695 695 }