mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
23 lines
410 B
Markdown
23 lines
410 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:
|
|
|
|
```sh
|
|
flutter drive \
|
|
--driver=test_driver/integration_test.dart \
|
|
--target=integration_test/example_test.dart \
|
|
-d web-server
|
|
```
|