Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit e39e4be

Browse files
committed
Skip typed_wrapper/stream_test
We can't test this in 2.0 runtime semantics until test supports a 2.0-compatible platform (dart-lang/test#414). Closes #35
1 parent b2118ce commit e39e4be

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/typed_wrapper/stream_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
@Skip("Re-enable this when test can run DDC (test#414).")
6+
57
import 'dart:async';
68

79
import "package:async/src/typed/stream.dart";
@@ -501,12 +503,12 @@ void main() {
501503
test("toList()", () async {
502504
var list = await wrapper.toList();
503505
expect(() => list.first, throwsCastError);
504-
}, skip: "Re-enable this when test can run DDC (test#414).");
506+
});
505507

506508
test("toSet()", () async {
507509
var asSet = await wrapper.toSet();
508510
expect(() => asSet.first, throwsCastError);
509-
}, skip: "Re-enable this when test can run DDC (test#414).");
511+
});
510512

511513
test("where()", () {
512514
expect(wrapper.where(expectAsync1((_) {}, count: 0)).first,

0 commit comments

Comments
 (0)