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