1
- import { Component , ViewChild } from '@angular/core' ;
1
+ import { ChangeDetectorRef , Component , ViewChild } from '@angular/core' ;
2
2
import { fakeAsync , ComponentFixture , TestBed , waitForAsync , tick } from '@angular/core/testing' ;
3
3
import { configureTestSuite } from '../test-utils/configure-suite' ;
4
4
import { IgxStepperComponent , IgxStepperModule } from './stepper.component' ;
@@ -9,13 +9,17 @@ import { IgxStepperOrienatation, IgxStepperTitlePosition, IgxStepType, IStepCha
9
9
import { Subject } from 'rxjs' ;
10
10
import { takeUntil } from 'rxjs/operators' ;
11
11
import { IgxIconModule } from '../icon/public_api' ;
12
+ import { IgxStepperService } from './stepper.service' ;
13
+ import { AnimationBuilder } from '@angular/animations' ;
14
+ import { IgxDirectionality } from '../services/direction/directionality' ;
15
+ import { IgxStepComponent } from './step/step.component' ;
12
16
13
17
const STEPPER_CLASS = 'igx-stepper' ;
14
18
const STEPPER_HEADER = 'igx-stepper__header' ;
15
19
const STEP_TAG = 'IGX-STEP' ;
16
20
const STEP_HEADER = 'igx-stepper__step-header' ;
17
21
18
- fdescribe ( 'Rendering Tests' , ( ) => {
22
+ describe ( 'Rendering Tests' , ( ) => {
19
23
configureTestSuite ( ) ;
20
24
let fix : ComponentFixture < IgxStepperSampleTestComponent > ;
21
25
let stepper : IgxStepperComponent ;
@@ -631,6 +635,8 @@ fdescribe('Rendering Tests', () => {
631
635
} ) ;
632
636
} ) ;
633
637
638
+ describe ( 'Stepper service unit tests' , ( ) => {
639
+ } ) ;
634
640
635
641
@Component ( {
636
642
template : `
0 commit comments