Skip to content
Snippets Groups Projects
Commit 363e1459 authored by Kristof De Langhe's avatar Kristof De Langhe
Browse files

55558: RouteService tests fix

parent 81d89401
No related branches found
No related tags found
No related merge requests found
import { Observable } from 'rxjs/Observable';
export class RouterStub {
url: string;
//noinspection TypeScriptUnresolvedFunction
navigate = jasmine.createSpy('navigate');
parseUrl = jasmine.createSpy('parseUrl');
events = Observable.of({});
navigateByUrl(url): void {
this.url = url;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment