I have a http request of this form in my angular app: this.http.get(url,options).pipe(retry(5))
I want to unit test this using jasmine, such that the http request first returns an error but on a subsequent try, returns the expected data.
I previously returned http errors in this format as recommended by the angular.io documentation spyOn(http,'get').and.returnValue(defer(() => Promise.reject(errorObject)));
The rxjs operator retry does not seem to call the http.get function again, so changing the return value of the spy does not work. What I think I need to do is somehow return an observable from the spy which first emits the error and later emits the data. I thought about using a BehaviorSubject but don't think that accepts errors to be passed.
Is there any way of achieving this?