From c5337506c4f53ee7bb5ae45944d7028da41243e3 Mon Sep 17 00:00:00 2001 From: Gary Roumanis Date: Tue, 18 Jul 2017 12:04:03 -0700 Subject: [PATCH 1/2] extend timeout --- CHANGELOG.md | 4 ++++ lib/src/runner/plugin/platform_helpers.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaf495e83..2754bb6ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.12.24-dev + +* Extend `deserializeTimeout`. + ## 0.12.24 * Add a `node` platform for compiling tests to JavaScript and running them on diff --git a/lib/src/runner/plugin/platform_helpers.dart b/lib/src/runner/plugin/platform_helpers.dart index 841b0756a..cf88baab2 100644 --- a/lib/src/runner/plugin/platform_helpers.dart +++ b/lib/src/runner/plugin/platform_helpers.dart @@ -25,7 +25,7 @@ import '../runner_test.dart'; typedef StackTrace _MapTrace(StackTrace trace); -final _deserializeTimeout = new Duration(minutes: 3); +final _deserializeTimeout = new Duration(minutes: 8); /// A helper method for creating a [RunnerSuiteController] containing tests /// that communicate over [channel]. diff --git a/pubspec.yaml b/pubspec.yaml index 7fc6cec4b..761fce35f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: test -version: 0.12.24 +version: 0.12.24-dev author: Dart Team description: A library for writing dart unit tests. homepage: https://github.com/dart-lang/test From f35b674b8b4804277a9b6feb0a8c52b0eed44c6d Mon Sep 17 00:00:00 2001 From: Gary Roumanis Date: Tue, 18 Jul 2017 12:12:50 -0700 Subject: [PATCH 2/2] bump number --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2754bb6ee..5da473d1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.12.24-dev +## 0.12.25-dev * Extend `deserializeTimeout`.