mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-10-08 14:51:14 +00:00
Upgrade to ADF 2.0.0-beta2 (#65)
* upgrade to 2.0.0-beta2 * search fixes * test fixes * test fixes * cleanup CLI config * remove unused property
This commit is contained in:
committed by
Cilibiu Bogdan
parent
54b4a8193b
commit
89fb92d1d9
@@ -20,7 +20,7 @@ import { Router } from '@angular/router';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { TestBed, async } from '@angular/core/testing';
|
||||
import { UploadService, NodesApiService, FileUploadCompleteEvent,
|
||||
FileUploadDeleteEvent, FileModel, AlfrescoContentService } from 'ng2-alfresco-core';
|
||||
FileUploadDeleteEvent, FileModel, ContentService } from '@alfresco/adf-core';
|
||||
|
||||
import { CommonModule } from '../../common/common.module';
|
||||
import { ContentManagementService } from '../../common/services/content-management.service';
|
||||
@@ -35,7 +35,7 @@ describe('FilesComponent', () => {
|
||||
let fixture;
|
||||
let component: FilesComponent;
|
||||
let contentManagementService: ContentManagementService;
|
||||
let alfrescoContentService: AlfrescoContentService;
|
||||
let alfrescoContentService: ContentService;
|
||||
let uploadService: UploadService;
|
||||
let nodesApi: NodesApiService;
|
||||
let router: Router;
|
||||
@@ -62,7 +62,7 @@ describe('FilesComponent', () => {
|
||||
uploadService = TestBed.get(UploadService);
|
||||
nodesApi = TestBed.get(NodesApiService);
|
||||
router = TestBed.get(Router);
|
||||
alfrescoContentService = TestBed.get(AlfrescoContentService);
|
||||
alfrescoContentService = TestBed.get(ContentService);
|
||||
browsingFilesService = TestBed.get(BrowsingFilesService);
|
||||
nodeActionsService = TestBed.get(NodeActionsService);
|
||||
});
|
||||
|
Reference in New Issue
Block a user