14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import { SectionsRoutingModule } from './sections-routing.module';
|
|
|
|
describe('SectionsRoutingModule', () => {
|
|
let sectionsRoutingModule: SectionsRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
sectionsRoutingModule = new SectionsRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(sectionsRoutingModule).toBeTruthy();
|
|
});
|
|
});
|