aves_mio1/.flutter/packages/integration_test/example/README.md
FabioMich66 19a982ede6
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-03-05 15:51:30 +01:00

31 lines
592 B
Markdown

# integration_test_example
Demonstrates how to use the `package:integration_test`.
To run `integration_test/example_test.dart`,
## Android / iOS
```sh
flutter drive \
--driver=test_driver/integration_test.dart \
--target=integration_test/example_test.dart
```
## Web
In one shell, run Chromedriver ([download
here](https://chromedriver.chromium.org/downloads)):
```sh
chromedriver --port 8444
```
Then, in another shell, run `flutter drive`:
```sh
flutter drive \
--driver=test_driver/integration_test.dart \
--target=integration_test/example_test.dart \
-d web-server
```