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