Skip to content

Commit e4e69a6

Browse files
author
ddaribo
committed
feat(stepper): update to latest changes
1 parent 17717e9 commit e4e69a6

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

projects/igniteui-angular/src/lib/stepper/stepper.component.spec.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, ViewChild } from '@angular/core';
1+
import { ChangeDetectorRef, Component, ViewChild } from '@angular/core';
22
import { fakeAsync, ComponentFixture, TestBed, waitForAsync, tick } from '@angular/core/testing';
33
import { configureTestSuite } from '../test-utils/configure-suite';
44
import { IgxStepperComponent, IgxStepperModule } from './stepper.component';
@@ -9,13 +9,17 @@ import { IgxStepperOrienatation, IgxStepperTitlePosition, IgxStepType, IStepCha
99
import { Subject } from 'rxjs';
1010
import { takeUntil } from 'rxjs/operators';
1111
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';
1216

1317
const STEPPER_CLASS = 'igx-stepper';
1418
const STEPPER_HEADER = 'igx-stepper__header';
1519
const STEP_TAG = 'IGX-STEP';
1620
const STEP_HEADER = 'igx-stepper__step-header';
1721

18-
fdescribe('Rendering Tests', () => {
22+
describe('Rendering Tests', () => {
1923
configureTestSuite();
2024
let fix: ComponentFixture<IgxStepperSampleTestComponent>;
2125
let stepper: IgxStepperComponent;
@@ -631,6 +635,8 @@ fdescribe('Rendering Tests', () => {
631635
});
632636
});
633637

638+
describe('Stepper service unit tests', () => {
639+
});
634640

635641
@Component({
636642
template: `

0 commit comments

Comments
 (0)