-
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
Look into groupBy test #1743
Comments
Closing this issue as stale. |
I'm reopening this as I'm now refactoring/rewriting it. The purpose is: make sure that the inner Observables (GroupedObservables) emitted are hot Observables, backed by a Subject, so late subscribers lose past events. Why it is broke after the Subject rework: because the group duration subscriber subscribes before the "late subscriber", and the duration subscriber is a TakeOperator, which means once it receives the second I'm working on rewriting this test. |
Closes issue ReactiveX#1743.
Closes issue ReactiveX#1743.
Closing because the PR was merged. |
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. |
In #1701, there was a test I commented out because its intent wasn't entirely clear, but it was broken after changes to Subject (to match Rx4 semantics) effected the subjects returned by
groupBy
.Here is the test:
rxjs/spec/operators/groupBy-spec.ts
Lines 1126 to 1204 in e9445c9
We need to capture it's purpose and drop, refactor or rewrite the test as necessary.
cc/ @staltz
The text was updated successfully, but these errors were encountered: