Jasmine Spy Returnwert bei Verwendung von Spionageobjekt Angular 2 erstellen
const loginResult = '';
const spy = spyOn(authService, 'login').and.callFake(() => {
return Observable.from([loginResult]);
})
Misty Moth