Reputation: 1487
According to https://github.com/ReactiveX/rxjs/blob/master/docs_app/content/guide/testing/marble-testing.md#marble-syntax
'--(abc)-|': on frame 20, emit a, b, and c, then on frame 80 complete
So how do I represent "on frame 20, emit a, b, and c, then on frame 40 complete.
Ie how can I stop the sync group itself taking up frames?
Upvotes: 4
Views: 1068
Reputation: 1487
cartant has answered this question in his comment.
There's no way to do it - sync groups will always take up extra frames even though all members occur in the frame of the opening bracket.
Upvotes: 2