2020-10-01 15:21:22 +00:00
|
|
|
import { EmployeeRoutingModule } from './employee-routing.module';
|
2018-05-25 13:49:00 +00:00
|
|
|
|
|
|
|
describe('EmployeeRoutingModule', () => {
|
|
|
|
let employeeRoutingModule: EmployeeRoutingModule;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
employeeRoutingModule = new EmployeeRoutingModule();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create an instance', () => {
|
|
|
|
expect(employeeRoutingModule).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|