Tables List and Detail working

TODO: Save SortOrder also, Drag and Drop ordering
This commit is contained in:
Amritanshu
2019-06-14 09:28:30 +05:30
parent d59c60e81d
commit 5093bdc391
23 changed files with 615 additions and 76 deletions

View File

@ -0,0 +1,25 @@
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {TableDetailComponent} from './tables-detail.component';
describe('TableDetailComponent', () => {
let component: TableDetailComponent;
let fixture: ComponentFixture<TableDetailComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [TableDetailComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TableDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});