Refactored to use process log bitstream

This commit is contained in:
Marie Verdonck
2020-11-12 17:35:10 +01:00
parent e4a1d717a2
commit df5570c7b0
9 changed files with 140 additions and 166 deletions

View File

@@ -1,4 +1,6 @@
/* tslint:disable:no-empty */
import { Observable, of as observableOf } from 'rxjs';
export class AuthServiceMock {
public checksAuthenticationToken() {
return
@@ -6,4 +8,8 @@ export class AuthServiceMock {
public buildAuthHeader() {
return 'auth-header';
}
public getShortlivedToken(): Observable<string> {
return observableOf('token');
}
}