This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -128,13 +128,17 @@ class TestCommand extends Command<bool> with ArgUtils {
128
128
case TestTypesRequested .unit:
129
129
return runUnitTests ();
130
130
case TestTypesRequested .integration:
131
- return runIntegrationTests ();
131
+ // TODO(nurhan): Stop running all integration tests for now.
132
+ // Related to: https://github.com/flutter/flutter/issues/62146
133
+ return true ; // runIntegrationTests();
132
134
case TestTypesRequested .all:
133
135
// TODO(nurhan): https://github.com/flutter/flutter/issues/53322
134
136
// TODO(nurhan): Expand browser matrix for felt integration tests.
135
137
if (runAllTests && (isChrome || isSafariOnMacOS || isFirefox)) {
136
138
bool unitTestResult = await runUnitTests ();
137
- bool integrationTestResult = await runIntegrationTests ();
139
+ // TODO(nurhan): Stop running all integration tests for now.
140
+ // Related to: https://github.com/flutter/flutter/issues/62146
141
+ bool integrationTestResult = true ; // await runIntegrationTests();
138
142
if (integrationTestResult != unitTestResult) {
139
143
print ('Tests run. Integration tests passed: $integrationTestResult '
140
144
'unit tests passed: $unitTestResult ' );
You can’t perform that action at this time.
0 commit comments