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