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
Current implementation of skipUntil() does not handle some cases such as argument observable raises error like
var e1 = hot('--a--b--c--d--e--|');
var skip = hot('-------------#');
var expected = '-------------#';
expectObservable(e1.skipUntil(skip)).toBe(expected);
Marble diagram of RxJS4 test expected to pass but fail.
The text was updated successfully, but these errors were encountered:
Current implementation of skipUntil() does not handle some cases such as argument observable raises error like
Marble diagram of RxJS4 test expected to pass but fail.
The text was updated successfully, but these errors were encountered: