platform/sandbox/reactivex/test/transformers/join_test.dart
2024-11-12 01:00:05 -07:00

11 lines
220 B
Dart

import 'dart:async';
import 'package:test/test.dart';
void main() {
test('Rx.join', () async {
final joined = await Stream.fromIterable(const ['h', 'i']).join('+');
await expectLater(joined, 'h+i');
});
}