
Closes https://github.com/flutter/flutter/issues/154596. It's less clear to me if your goal was to migrate _all_ of these btw: https://github.com/search?q=org%3Aflutter+%22mobile-web-app-capable%22&type=code
integration_test_example
Demonstrates how to use the package:integration_test
.
To run integration_test/example_test.dart
,
Android / iOS
flutter drive \
--driver=test_driver/integration_test.dart \
--target=integration_test/example_test.dart
Web
In one shell, run Chromedriver (download here):
chromedriver --port 8444
Then, in another shell, run flutter drive
:
flutter drive \
--driver=test_driver/integration_test.dart \
--target=integration_test/example_test.dart \
-d web-server