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