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