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