mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
Use latest adf to fix issue 3252 (#1479)
* Use latest adf to fix issue 3252 * Fix unit test
This commit is contained in:
@@ -34,6 +34,7 @@ import {
|
||||
} from '@alfresco/adf-core';
|
||||
import { LibTestingModule } from '../testing/lib-testing-module';
|
||||
import { SharedDirectivesModule } from './shared.directives.module';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
|
||||
describe('PaginationDirective', () => {
|
||||
let preferences: UserPreferencesService;
|
||||
@@ -44,7 +45,12 @@ describe('PaginationDirective', () => {
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [LibTestingModule, SharedDirectivesModule, CoreModule.forRoot()]
|
||||
imports: [
|
||||
TranslateModule.forRoot(),
|
||||
LibTestingModule,
|
||||
SharedDirectivesModule,
|
||||
CoreModule.forRoot()
|
||||
]
|
||||
});
|
||||
|
||||
preferences = TestBed.get(UserPreferencesService);
|
||||
|
Reference in New Issue
Block a user