barker/bookie/src/app/tables/tables.module.spec.ts
Amritanshu 5093bdc391 Tables List and Detail working
TODO: Save SortOrder also, Drag and Drop ordering
2019-06-14 09:28:30 +05:30

14 lines
269 B
TypeScript

import {TableModule} from './tables.module';
describe('TableModule', () => {
let tablesModule: TableModule;
beforeEach(() => {
tablesModule = new TableModule();
});
it('should create an instance', () => {
expect(tablesModule).toBeTruthy();
});
});