Unverified Commit 42c9e276 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Increase dart migrate integration test timeout (#77192)

parent eee0dc84
...@@ -13,6 +13,7 @@ import 'test_utils.dart'; ...@@ -13,6 +13,7 @@ import 'test_utils.dart';
void main() { void main() {
/// Verifies that `dart migrate` will run successfully on the default `flutter create` /// Verifies that `dart migrate` will run successfully on the default `flutter create`
/// template. /// template.
group('dart migrate', () {
testWithoutContext('dart migrate succeeds on flutter create template', () async { testWithoutContext('dart migrate succeeds on flutter create template', () async {
Directory tempDir; Directory tempDir;
try { try {
...@@ -35,7 +36,7 @@ void main() { ...@@ -35,7 +36,7 @@ void main() {
} finally { } finally {
tempDir?.deleteSync(recursive: true); tempDir?.deleteSync(recursive: true);
} }
}, timeout: const Timeout(Duration(minutes: 1))); });
/// Verifies that `dart migrate` will run successfully on the module template /// Verifies that `dart migrate` will run successfully on the module template
/// used by `flutter create --template=plugin`. /// used by `flutter create --template=plugin`.
...@@ -62,6 +63,7 @@ void main() { ...@@ -62,6 +63,7 @@ void main() {
tempDir?.deleteSync(recursive: true); tempDir?.deleteSync(recursive: true);
} }
}); });
}, timeout: const Timeout(Duration(seconds: 90)));
} }
Future<Directory> _createProject(Directory tempDir, [List<String> extraAgs]) async { Future<Directory> _createProject(Directory tempDir, [List<String> extraAgs]) async {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment