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