Unverified Commit a836201a authored by Mikkel Nygaard Ravn's avatar Mikkel Nygaard Ravn Committed by GitHub

Raise timeout limit for tests that call pub (#12968)

parent 46b2d646
...@@ -55,7 +55,7 @@ void main() { ...@@ -55,7 +55,7 @@ void main() {
final String projectPath = await runCommand('get'); final String projectPath = await runCommand('get');
expectExists(projectPath, 'lib/main.dart'); expectExists(projectPath, 'lib/main.dart');
expectExists(projectPath, '.packages'); expectExists(projectPath, '.packages');
}); }, timeout: const Timeout.factor(3.0));
testUsingContext('get --offline', () async { testUsingContext('get --offline', () async {
final String projectPath = await runCommand('get', args: <String>['--offline']); final String projectPath = await runCommand('get', args: <String>['--offline']);
...@@ -67,7 +67,7 @@ void main() { ...@@ -67,7 +67,7 @@ void main() {
final String projectPath = await runCommand('upgrade'); final String projectPath = await runCommand('upgrade');
expectExists(projectPath, 'lib/main.dart'); expectExists(projectPath, 'lib/main.dart');
expectExists(projectPath, '.packages'); expectExists(projectPath, '.packages');
}); }, timeout: const Timeout.factor(3.0));
}); });
group('packages test/pub', () { group('packages test/pub', () {
......
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