refactor: make data list reusable component

Closes #98
This commit is contained in:
Jovan Krunić
2021-04-15 17:24:15 +02:00
parent c97ecd698c
commit a8f22c1e96
15 changed files with 472 additions and 354 deletions

View File

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