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