-
Notifications
You must be signed in to change notification settings - Fork 275
Closed
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request
Description
Probably the same as #477 but I'm opening a new issue because that one was not reopened.
These tests pass in rxdart 0.23.1:
test('rxdart #477/#500 - a', () async {
final a = BehaviorSubject.seeded('a')
.switchMap((_) => BehaviorSubject.seeded('a'))
..listen(print);
await pumpEventQueue();
expect(await a.first, 'a'); // this future does not complete in 0.24.1 - this is fixed in 0.25.0-beta
});
test('rxdart #477/#500 - b', () async {
final b = BehaviorSubject.seeded('b')
.map((_) => 'b')
.switchMap((_) => BehaviorSubject.seeded('b'))
..listen(print);
await pumpEventQueue();
expect(await b.first, 'b'); // this future does not complete in 0.25.0-beta
});Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request