Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(799)

Unified Diff: lib/src/runner/browser/browser_manager.dart

Issue 1230983002: Substantially increase browser timeouts. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/runner/browser/server.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner/browser/browser_manager.dart
diff --git a/lib/src/runner/browser/browser_manager.dart b/lib/src/runner/browser/browser_manager.dart
index 55187482379426559dde99bec11c81ee211d2b00..0442d82bd35819400cdce2c802d588f962c6142b 100644
--- a/lib/src/runner/browser/browser_manager.dart
+++ b/lib/src/runner/browser/browser_manager.dart
@@ -108,7 +108,7 @@ class BrowserManager {
if (!completer.isCompleted) completer.complete();
});
- return completer.future.timeout(new Duration(seconds: 15), onTimeout: () {
+ return completer.future.timeout(new Duration(minutes: 1), onTimeout: () {
throw new LoadException(
path,
"Timed out waiting for the test suite to connect on "
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/runner/browser/server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698