diff --git a/integration_tests/wasm/test/hello_world_test.dart b/integration_tests/wasm/test/hello_world_test.dart index 9ddd5116b..0cd79979a 100644 --- a/integration_tests/wasm/test/hello_world_test.dart +++ b/integration_tests/wasm/test/hello_world_test.dart @@ -3,6 +3,8 @@ // BSD-style license that can be found in the LICENSE file. @TestOn('wasm') +// TODO: https://github.com/dart-lang/test/issues/2288 +@OnPlatform({'firefox': Skip()}) // This retry is a regression test for https://github.com/dart-lang/test/issues/2006 @Retry(2) library; diff --git a/pkgs/test/CHANGELOG.md b/pkgs/test/CHANGELOG.md index ed126365f..8a6e13f8a 100644 --- a/pkgs/test/CHANGELOG.md +++ b/pkgs/test/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.25.15-wip + ## 1.25.14 * Use secure random for url secrets. diff --git a/pkgs/test/lib/src/runner/browser/dom.dart b/pkgs/test/lib/src/runner/browser/dom.dart index d0fba482b..36b672bbe 100644 --- a/pkgs/test/lib/src/runner/browser/dom.dart +++ b/pkgs/test/lib/src/runner/browser/dom.dart @@ -2,6 +2,7 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. +// ignore: deprecated_member_use import 'dart:js_util' as js_util; import 'package:js/js.dart'; diff --git a/pkgs/test/lib/src/runner/browser/post_message_channel.dart b/pkgs/test/lib/src/runner/browser/post_message_channel.dart index 60a5a6b11..29bb3e547 100644 --- a/pkgs/test/lib/src/runner/browser/post_message_channel.dart +++ b/pkgs/test/lib/src/runner/browser/post_message_channel.dart @@ -2,6 +2,7 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. +// ignore: deprecated_member_use import 'dart:js_util'; import 'package:stream_channel/stream_channel.dart'; diff --git a/pkgs/test/pubspec.yaml b/pkgs/test/pubspec.yaml index 1c796523b..c9d2641ec 100644 --- a/pkgs/test/pubspec.yaml +++ b/pkgs/test/pubspec.yaml @@ -1,5 +1,5 @@ name: test -version: 1.25.14 +version: 1.25.15-wip description: >- A full featured library for writing and running Dart tests across platforms. repository: https://github.com/dart-lang/test/tree/master/pkgs/test