mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 00:52:55 +00:00
fix: performance degradation when scrolling
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
|
||||
|
||||
import {DataListComponent} from './data-list.component';
|
||||
import {TranslateModule} from '@ngx-translate/core';
|
||||
|
||||
describe('DataListComponent', () => {
|
||||
let component: DataListComponent;
|
||||
@@ -8,7 +9,10 @@ describe('DataListComponent', () => {
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ DataListComponent ]
|
||||
declarations: [ DataListComponent ],
|
||||
imports: [
|
||||
TranslateModule.forRoot(),
|
||||
]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user