()
| 767 | it('should not clobber the `complete` binding when resetting', () => { |
| 768 | const steps: CdkStep[] = stepper.steps.toArray(); |
| 769 | const fillOutStepper = () => { |
| 770 | testComponent.oneGroup.get('oneCtrl')!.setValue('input'); |
| 771 | testComponent.twoGroup.get('twoCtrl')!.setValue('input'); |
| 772 | testComponent.threeGroup.get('threeCtrl')!.setValue('valid'); |
| 773 | testComponent.validationTrigger.next(); |
| 774 | stepper.selectedIndex = 1; |
| 775 | fixture.detectChanges(); |
| 776 | stepper.selectedIndex = 2; |
| 777 | fixture.detectChanges(); |
| 778 | stepper.selectedIndex = 3; |
| 779 | fixture.detectChanges(); |
| 780 | }; |
| 781 | |
| 782 | fillOutStepper(); |
| 783 |
no test coverage detected
searching dependent graphs…