Skip to content

Commit 4362d64

Browse files
authored
Increase the timeout when waiting for Chrome to open (#9883)
1 parent 34f9380 commit 4362d64

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

packages/devtools_shared/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ found in the LICENSE file or at https://developers.google.com/open-source/licens
2727
argument.
2828
* Update `LocalFileSystem` and `IOPersistentProperties` to use `package:file`
2929
instead of `dart:io` to allow mocking the file system.
30+
* Increase ChromeDriver startup wait timeout to 30 seconds to support slower environments.
3031

3132
# 13.0.2
3233

packages/devtools_shared/lib/src/test/chrome_driver.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ChromeDriver with IOMixin {
5555

5656
Future<void> _waitForPortOpen(
5757
int port, {
58-
Duration timeout = const Duration(seconds: 10),
58+
Duration timeout = const Duration(seconds: 30),
5959
}) async {
6060
final stopwatch = Stopwatch()..start();
6161

0 commit comments

Comments
 (0)