Skip to content

Commit

Permalink
increase timeout because simulator on GHA is very slow (#1040)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Mar 4, 2023
1 parent 9db9e4d commit 30033f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/patrol/example/integration_test/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export 'package:flutter_test/flutter_test.dart';
export 'package:patrol/patrol.dart';

final globalPatrolTesterConfig = PatrolTesterConfig();
final globalNativeAutomatorConfig = NativeAutomatorConfig();
final globalNativeAutomatorConfig = NativeAutomatorConfig(
findTimeout: Duration(seconds: 30), // Simulator on GitHub Actions is so slow
);

Future<void> createApp(PatrolTester $) async {
await setUpTimezone();
Expand Down

0 comments on commit 30033f7

Please sign in to comment.