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