mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-23 23:16:49 +00:00
Fixes build issues. Removes warnings.
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
import {inject, TestBed} from '@angular/core/testing';
|
||||
import {HttpModule} from '@angular/http';
|
||||
import {StyleManagerComponent} from './style-manager.component';
|
||||
import {StyleManagerService} from './style-manager.service';
|
||||
|
||||
|
||||
describe('StyleManager', () => {
|
||||
let styleManager: StyleManagerComponent;
|
||||
let styleManager: StyleManagerService;
|
||||
|
||||
beforeEach(() => TestBed.configureTestingModule({
|
||||
imports: [HttpModule],
|
||||
providers: [StyleManagerComponent]
|
||||
providers: [StyleManagerService]
|
||||
}));
|
||||
|
||||
beforeEach(inject([StyleManagerComponent], (sm: StyleManagerComponent) => {
|
||||
beforeEach(inject([StyleManagerService], (sm: StyleManagerService) => {
|
||||
styleManager = sm;
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user