Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/web_ui/dev/driver_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
## Map for driver versions to use for each browser version.
## See: https://chromedriver.chromium.org/downloads
chrome:
85: '85.0.4183.38'
84: '84.0.4147.30'
83: '83.0.4103.39'
81: '81.0.4044.69'
80: '80.0.3987.106'
Expand Down
8 changes: 2 additions & 6 deletions lib/web_ui/dev/test_runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,17 +128,13 @@ class TestCommand extends Command<bool> with ArgUtils {
case TestTypesRequested.unit:
return runUnitTests();
case TestTypesRequested.integration:
// TODO(nurhan): Stop running all integration tests for now.
// Related to: https://github.com/flutter/flutter/issues/62146
return true; // runIntegrationTests();
return runIntegrationTests();
case TestTypesRequested.all:
// TODO(nurhan): https://github.com/flutter/flutter/issues/53322
// TODO(nurhan): Expand browser matrix for felt integration tests.
if (runAllTests && (isChrome || isSafariOnMacOS || isFirefox)) {
bool unitTestResult = await runUnitTests();
// TODO(nurhan): Stop running all integration tests for now.
// Related to: https://github.com/flutter/flutter/issues/62146
bool integrationTestResult = true; // await runIntegrationTests();
bool integrationTestResult = await runIntegrationTests();
if (integrationTestResult != unitTestResult) {
print('Tests run. Integration tests passed: $integrationTestResult '
'unit tests passed: $unitTestResult');
Expand Down
2 changes: 1 addition & 1 deletion lib/web_ui/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ui
publish_to: none

environment:
sdk: ">=2.9.0-0 <3.0.0"
sdk: ">=2.10.0-0 <3.0.0"

dependencies:
meta: 1.1.8
Expand Down