Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 4220301

Browse files
author
nturgut
authored
re-enable integration tests. increase sdk version. (#20075)
1 parent f27729e commit 4220301

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

lib/web_ui/dev/driver_version.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
## Map for driver versions to use for each browser version.
33
## See: https://chromedriver.chromium.org/downloads
44
chrome:
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'

lib/web_ui/dev/test_runner.dart

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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');

lib/web_ui/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ui
22
publish_to: none
33

44
environment:
5-
sdk: ">=2.9.0-0 <3.0.0"
5+
sdk: ">=2.10.0-0 <3.0.0"
66

77
dependencies:
88
meta: 1.1.8

0 commit comments

Comments
 (0)