import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { StepperComponent } from './stepper.component'; describe('StepperComponent', () => { let component: StepperComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [StepperComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(StepperComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });