remove unused dependencies

This commit is contained in:
Eugenio Romano
2016-08-17 15:53:24 +01:00
parent b5ffa6fd36
commit 077df4b87f
5 changed files with 5 additions and 17 deletions

View File

@@ -19,7 +19,6 @@ import { describe, expect, it, inject, beforeEachProviders, beforeEach, afterEac
import { TestComponentBuilder } from '@angular/compiler/testing';
import { WebscriptComponent } from '../src/webscript.component';
import { AlfrescoSettingsServiceMock } from '../src/assets/AlfrescoSettingsService.service.mock';
import { HTTP_PROVIDERS } from '@angular/http';
import { AlfrescoAuthenticationService, AlfrescoSettingsService } from 'ng2-alfresco-core';
@@ -31,9 +30,8 @@ describe('Test ng2-alfresco-webscript', () => {
beforeEachProviders(() => {
return [
HTTP_PROVIDERS,
{provide: AlfrescoSettingsService, useClass: AlfrescoSettingsServiceMock},
{provide: AlfrescoAuthenticationService, useClass: AlfrescoAuthenticationService}
AlfrescoAuthenticationService
];
});