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