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