| Index: tests/html/streams_test.dart
|
| diff --git a/tests/html/streams_test.dart b/tests/html/streams_test.dart
|
| index 6c75dfe206d64c4b25007495152e8e037e752691..8a46b6505dcb6ba4370983bb2317aed4720231df 100644
|
| --- a/tests/html/streams_test.dart
|
| +++ b/tests/html/streams_test.dart
|
| @@ -36,6 +36,12 @@ main() {
|
| expect(callCount, 1);
|
| });
|
|
|
| + test('broadcast', () {
|
| + var stream = new DivElement().onClick;
|
| + expect(stream.asBroadcastStream(), stream);
|
| + expect(stream.isBroadcast, isTrue);
|
| + });
|
| +
|
| // Validates that capturing events fire on parent before child.
|
| test('capture', () {
|
| var parent = new DivElement();
|
|
|