misc/src/app/employees/employee-details/employee-details.component.spec.ts
2019-09-12 16:52:35 +02:00

26 lines
692 B
TypeScript

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