-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TestScheduler ColdObservable unable to emit synchronously #2169
Comments
@kwonoj is this still the case? This is a really old issue. Can you verify? |
This is still an issue and tried attempt few way to resolve this but wasn't successful so far. |
I guess we could just examine the marbles we get, and if all notifications are on |
correct, I could make gross conditional but somehow failed to coordinate synchronous subscription with other marbles created. I'm feeling I did something very incorrect, just need some more trial & errors. |
@kwonoj maybe put up a PR as a WIP and we can have a look? |
makes sense, I'll prep it to anyone can see error I saw (and possibly can mock me about mistakes I made there :lol:) |
This is something the new design @jayphelps and I came up with should cover. |
As it's not something that is really a bug with the current ColdObservable, I'm going to close this. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
According to @trxcllnt's comment here,
cold('(a|)')
will not synchronously emita
likeObservable.of('a')
would.Observable.of('a')
andcold('(a|)')
should be equivalent.The text was updated successfully, but these errors were encountered: