74612: Post-merge test fixes

This commit is contained in:
Kristof De Langhe
2020-11-24 12:03:34 +01:00
parent c28af7d7c8
commit 8486fecc17
2 changed files with 7 additions and 6 deletions

View File

@@ -12,4 +12,11 @@ export class AuthServiceMock {
public getShortlivedToken(): Observable<string> {
return observableOf('token');
}
public isAuthenticated(): Observable<boolean> {
return observableOf(true);
}
public setRedirectUrl(url: string) {
}
}