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