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