Skip to content

Commit 7652f64

Browse files
authored
Double the timeout for the webdev installation test (#2137)
1 parent a6d761d commit 7652f64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webdev/test/installation_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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-
@Timeout(Duration(seconds: 90))
5+
@Timeout(Duration(minutes: 3))
66
import 'dart:async';
77
import 'dart:convert';
88
import 'dart:io';
@@ -19,7 +19,7 @@ enum StreamType {
1919
stderr,
2020
}
2121

22-
const processTimeout = Duration(seconds: 30);
22+
const processTimeout = Duration(minutes: 1);
2323

2424
void main() {
2525
Process? _createProcess;

0 commit comments

Comments
 (0)