-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
spy.show() doesn't filter out observables that run in sync #44
Comments
Why is that a problem? It states that they are complete. There will be more advanced querying capabilities in Completed subscriptions will continue to be shown until the |
I've actually got keptDuration set to zero in the demo. So they should have been wiped. As you can see, the other two tags were removed and they subscribed after the synchronous ones. The issue is I'm combing through my site looking for any leaky subscriptions. Since the synchronous ones aren't removed, they become red-herrings. A work around is to add a delay(1) to the pipe, but that's altering code to fix a debug tool. Also, I understand you're working on rxjs-devtools. I'm mostly logging this because it dogged me for two days and I'm hoping to spare others. |
Try setting it to a small, non-zero number. |
I'll add your synchronous |
I added some sync tests for the graph flushing to |
FYI, I've added tests to |
When using spy.show() from the console, observables that run synchronously are not filtered out of the list.
The text was updated successfully, but these errors were encountered: