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