Unverified Commit 8e4b349c authored by Devon Carew's avatar Devon Carew Committed by GitHub

increase test timeouts (#17477)

parent 09dec7f5
...@@ -60,7 +60,7 @@ void main() { ...@@ -60,7 +60,7 @@ void main() {
arguments: <String>['analyze'], arguments: <String>['analyze'],
statusTextContains: <String>['No issues found!'], statusTextContains: <String>['No issues found!'],
); );
}); }, timeout: const Timeout.factor(2.0));
// Analyze a specific file outside the current directory // Analyze a specific file outside the current directory
testUsingContext('passing one file throws', () async { testUsingContext('passing one file throws', () async {
...@@ -102,7 +102,7 @@ void main() { ...@@ -102,7 +102,7 @@ void main() {
], ],
toolExit: true, toolExit: true,
); );
}); }, timeout: const Timeout.factor(2.0));
// Analyze in the current directory - no arguments // Analyze in the current directory - no arguments
testUsingContext('working directory with local options', () async { testUsingContext('working directory with local options', () async {
...@@ -129,7 +129,7 @@ void main() { ...@@ -129,7 +129,7 @@ void main() {
], ],
toolExit: true, toolExit: true,
); );
}); }, timeout: const Timeout.factor(2.0));
testUsingContext('no duplicate issues', () async { testUsingContext('no duplicate issues', () async {
final Directory tempDir = fs.systemTempDirectory.createTempSync('analyze_once_test_').absolute; final Directory tempDir = fs.systemTempDirectory.createTempSync('analyze_once_test_').absolute;
......
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