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
Expected behavior:
The same values should be emitted whether the second line .concat(Rx.Observable.never()) is present or not.
Actual behavior:
A value is emitted only when that line is present.
Additional information:
A completion of the source observable (of(1) or of(1).concat(Rx.Observable.never())) should not have any meaning beyond indicating that no more values will be emitted, so it shouldn't cause auditTime to drop the value.
The text was updated successfully, but these errors were encountered:
We just ran into this issue. The behavior doesn't seem to be defined by the auditTime-spec either. We recently had a similar issue with throttleTime#3351.
RxJS version:
6.0.0-alpha.3 (but would also work with previous versions)
Code to reproduce:
Expected behavior:
The same values should be emitted whether the second line
.concat(Rx.Observable.never())
is present or not.Actual behavior:
A value is emitted only when that line is present.
Additional information:
A completion of the source observable (
of(1)
orof(1).concat(Rx.Observable.never())
) should not have any meaning beyond indicating that no more values will be emitted, so it shouldn't causeauditTime
to drop the value.The text was updated successfully, but these errors were encountered: