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