5093bdc391
TODO: Save SortOrder also, Drag and Drop ordering
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();
|
|
});
|
|
});
|