add AlfrescoApiService

This commit is contained in:
Mario Romano
2016-09-06 12:14:00 +01:00
parent 30f22006dd
commit 788f66cb12
4 changed files with 8 additions and 8 deletions

View File

@@ -16,7 +16,7 @@
*/
import { it, inject, describe, expect, beforeEach, beforeEachProviders, afterEach } from '@angular/core/testing';
import { AlfrescoAuthenticationService, AlfrescoSettingsService } from 'ng2-alfresco-core';
import { AlfrescoAuthenticationService, AlfrescoSettingsService, AlfrescoApiService } from 'ng2-alfresco-core';
import { NodeService } from './node.service';
import { EcmModelService } from './ecm-model.service';
import { HTTP_PROVIDERS } from '@angular/http';
@@ -35,7 +35,8 @@ describe('EcmModelService', () => {
AlfrescoSettingsService,
NodeService,
EcmModelService,
HTTP_PROVIDERS
HTTP_PROVIDERS,
AlfrescoApiService
];
});

View File

@@ -16,7 +16,7 @@
*/
import { it, inject, describe, expect, beforeEach, beforeEachProviders, afterEach } from '@angular/core/testing';
import { AlfrescoAuthenticationService, AlfrescoSettingsService } from 'ng2-alfresco-core';
import { AlfrescoAuthenticationService, AlfrescoSettingsService, AlfrescoApiService } from 'ng2-alfresco-core';
import { NodeService } from './node.service';
import { NodeMetadata } from '../models/node-metadata.model';
import { EcmModelService } from './ecm-model.service';
@@ -31,7 +31,8 @@ describe('NodeService', () => {
return [
AlfrescoAuthenticationService,
AlfrescoSettingsService,
NodeService
NodeService,
AlfrescoApiService
];
});