This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 22# # Map for driver versions to use for each browser version.
33# # See: https://chromedriver.chromium.org/downloads
44chrome :
5+ 85 : ' 85.0.4183.38'
6+ 84 : ' 84.0.4147.30'
57 83 : ' 83.0.4103.39'
68 81 : ' 81.0.4044.69'
79 80 : ' 80.0.3987.106'
Original file line number Diff line number Diff line change @@ -128,17 +128,13 @@ class TestCommand extends Command<bool> with ArgUtils {
128128 case TestTypesRequested .unit:
129129 return runUnitTests ();
130130 case TestTypesRequested .integration:
131- // TODO(nurhan): Stop running all integration tests for now.
132- // Related to: https://github.com/flutter/flutter/issues/62146
133- return true ; // runIntegrationTests();
131+ return runIntegrationTests ();
134132 case TestTypesRequested .all:
135133 // TODO(nurhan): https://github.com/flutter/flutter/issues/53322
136134 // TODO(nurhan): Expand browser matrix for felt integration tests.
137135 if (runAllTests && (isChrome || isSafariOnMacOS || isFirefox)) {
138136 bool unitTestResult = await runUnitTests ();
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();
137+ bool integrationTestResult = await runIntegrationTests ();
142138 if (integrationTestResult != unitTestResult) {
143139 print ('Tests run. Integration tests passed: $integrationTestResult '
144140 'unit tests passed: $unitTestResult ' );
Original file line number Diff line number Diff line change 22publish_to : none
33
44environment :
5- sdk : " >=2.9 .0-0 <3.0.0"
5+ sdk : " >=2.10 .0-0 <3.0.0"
66
77dependencies :
88 meta : 1.1.8
You can’t perform that action at this time.
0 commit comments