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
@cartant ... yes, that's a valid workaround. I think this issue is confusing enough that we should make sure that .toBe(' ') and .toBe('-------') work the same way as .toBe([]).
Further, it's plausible that people will have tests that expect subscriptions like ['^---!', '----', '---^--!'] or the like. I think what we need to do is just take the { subscribed: null, unsubscribed: null } (or whatever that outputs), and filter them out of the resulting arrays. Then everything should "just work" as expected.
Currently, there is no way to properly test a lack of subscription, AFAICT. (Maybe I'm wrong? haha)
So let's say I want to test something like this:
Ran into this while trying to test a bug in
subscribeOn
.The text was updated successfully, but these errors were encountered: