Skip to content

Commit

Permalink
Fix App.started timeout in integration tests (#6295)
Browse files Browse the repository at this point in the history
  • Loading branch information
CoderDake authored Aug 31, 2023
1 parent 3df51f9 commit 028ac58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ class TestDartCliApp extends IntegrationTestApp {
abstract class IntegrationTestApp with IOMixin {
IntegrationTestApp(this.testAppPath, this.testAppDevice);

static const _appStartTimeout = Duration(seconds: 120);
static const _appStartTimeout = Duration(seconds: 240);

static const _defaultTimeout = Duration(seconds: 40);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import 'package:vm_service/vm_service_io.dart';
// Set this to true for debugging to get JSON written to stdout.
const bool _printDebugOutputToStdOut = false;
const Duration defaultTimeout = Duration(seconds: 40);
const Duration appStartTimeout = Duration(seconds: 120);
const Duration appStartTimeout = Duration(seconds: 240);
const Duration quitTimeout = Duration(seconds: 10);

abstract class FlutterTestDriver {
Expand Down

0 comments on commit 028ac58

Please sign in to comment.