Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/devtools_shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ found in the LICENSE file or at https://developers.google.com/open-source/licens
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

Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_shared/lib/src/test/chrome_driver.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ChromeDriver with IOMixin {

Future<void> _waitForPortOpen(
int port, {
Duration timeout = const Duration(seconds: 10),
Duration timeout = const Duration(seconds: 30),
}) async {
final stopwatch = Stopwatch()..start();

Expand Down
Loading