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