14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
import { HeaderFooterRoutingModule } from './header-footer-routing.module';
|
|
|
|
describe('HeaderFooterRoutingModule', () => {
|
|
let headerFooterRoutingModule: HeaderFooterRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
headerFooterRoutingModule = new HeaderFooterRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(headerFooterRoutingModule).toBeTruthy();
|
|
});
|
|
});
|