Increase the timeout when waiting for Chrome to open (#9883)
diff --git a/packages/devtools_shared/CHANGELOG.md b/packages/devtools_shared/CHANGELOG.md
index a3c2483..fa67a04 100644
--- a/packages/devtools_shared/CHANGELOG.md
+++ b/packages/devtools_shared/CHANGELOG.md
@@ -27,6 +27,7 @@
     argument.
 * Update `LocalFileSystem` and `IOPersistentProperties` to use `package:file`
   instead of `dart:io` to allow mocking the file system.
+* Increase ChromeDriver startup wait timeout to 30 seconds to support slower environments.
 
 # 13.0.2
 
diff --git a/packages/devtools_shared/lib/src/test/chrome_driver.dart b/packages/devtools_shared/lib/src/test/chrome_driver.dart
index ab84cba..0a5cca1 100644
--- a/packages/devtools_shared/lib/src/test/chrome_driver.dart
+++ b/packages/devtools_shared/lib/src/test/chrome_driver.dart
@@ -55,7 +55,7 @@
 
   Future<void> _waitForPortOpen(
     int port, {
-    Duration timeout = const Duration(seconds: 10),
+    Duration timeout = const Duration(seconds: 30),
   }) async {
     final stopwatch = Stopwatch()..start();