65528: ComCol Tree with full FlatList that gets generated at page-load

This commit is contained in:
Marie Verdonck
2019-10-09 18:06:51 +02:00
parent 2d50598177
commit 4feba32157
14 changed files with 287 additions and 0 deletions

View File

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