Skip to content

Commit

Permalink
test(service): fixed missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ocombe committed Mar 23, 2017
1 parent 80336c4 commit 35b48c3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/translate.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import {TranslateService, TranslateLoader, LangChangeEvent, TranslationChangeEve
import {Observable} from "rxjs/Observable";
import {getTestBed, TestBed, fakeAsync, tick} from "@angular/core/testing";

import 'rxjs/add/observable/timer';
import 'rxjs/add/operator/mapTo';

let translations: any = {"TEST": "This is a test"};
class FakeLoader implements TranslateLoader {
getTranslation(lang: string): Observable<any> {
Expand Down

0 comments on commit 35b48c3

Please sign in to comment.