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