README.md
1# Integration tests
2
3These tests are not hermetic, and use the actual Flutter SDK. While
4they don't require actual devices, they run `flutter_tester` to test
5Dart VM and Flutter integration.
6
7Use this command to run (from the `flutter_tools` directory):
8
9```shell
10../../bin/cache/dart-sdk/bin/pub run test test/integration.shard
11```
12
13These tests are expensive to run and do not give meaningful coverage
14information for the flutter tool (since they are black-box tests that
15run the tool as a subprocess, rather than being unit tests). For this
16reason, they are in a separate shard when running on continuous
17integration and are not run when calculating coverage.
18