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