Changeset 7919
- Timestamp:
- 04/03/07 16:45:02 (22 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/tests/runner.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/tests/runner.js
r7915 r7919 559 559 } 560 560 } 561 return true; 561 562 } 562 563 … … 604 605 // run it, catching exceptions and reporting them 605 606 try{ 607 // let tests reference "this.group.thinger..." which can be set by 608 // another test or group-level setUp function 609 fixture.group = tg; 610 // only execute the parts of the fixture we've got 606 611 if(fixture["setUp"]){ fixture.setUp(this); } 607 if(fixture["runTest"]){ 612 if(fixture["runTest"]){ // should we error out of a fixture doesn't have a runTest? 608 613 var ret = fixture.runTest(this); 609 614 // if we get a deferred back from the test runner, we know we're … … 628 633 tests._testFinished(groupName, fixture, ret.results[0]); 629 634 if(tests._paused){ 630 // console.debug("finished deferred test group:", groupName, tests);631 635 tests.run(); 632 636 } … … 748 752 if(!found){ 749 753 found = true; 750 // console.debug("starting from:", x, ct);751 754 this.runGroup(x, ct); 752 755 }else{