You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let's say one of observable to be tested have relatively long timeframe such as
source=cold('1--2--#');notifier=Observable.timer(10*1000,testScheduler)//expect retry after 10secexpected=???
expectObservable(source.retryWhen(notifier)).toBe(expected);
first, since TestScheduler limits maximum virtual frame less than 1000, retry logic won't be flushed by testScheduler. Secondly, it is hard to draw marble diagram for expected values even scheduler supports it since timeframe becomes excessively long.
I think it's not general, frequent cases though - is there any possible representation for this cases?
The text was updated successfully, but these errors were encountered:
RxJS version:
beta.12
Additional information:
let's say one of observable to be tested have relatively long timeframe such as
first, since
TestScheduler
limits maximum virtual frame less than 1000, retry logic won't be flushed by testScheduler. Secondly, it is hard to draw marble diagram for expected values even scheduler supports it since timeframe becomes excessively long.I think it's not general, frequent cases though - is there any possible representation for this cases?
The text was updated successfully, but these errors were encountered: