blob: 8ebc029a8262b62bc930bf7fa7cbc3508757eaa8 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ManageEmployeeComponent } from './manage-employee.component';
describe('ManageEmployeeComponent', () => {
let component: ManageEmployeeComponent;
let fixture: ComponentFixture<ManageEmployeeComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ManageEmployeeComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ManageEmployeeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});