add tabulatable loader and related configuration

This commit is contained in:
FrancescoMolinaro
2024-01-04 17:15:25 +01:00
parent 9386536ca9
commit de8c0c9528
16 changed files with 605 additions and 19 deletions

View File

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