Add instructions to generate test coverage report (#613)

pull/619/head
Abdullah Deshmukh 4 years ago committed by GitHub
parent 0264184a2c
commit 3d943d7d46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,6 +42,16 @@ The Flutter SDK can run unit tests and widget tests in a virtual machine, withou
- For testing state using Flutter Driver - For testing state using Flutter Driver
- Run `flutter drive --target=test_driver/<file_path>` - Run `flutter drive --target=test_driver/<file_path>`
### To generate test coverage report:
- Install the `lcov` tool:
- For MacOS, run `brew install lcov`
- For Linux, run `sudo apt install lcov`
- Run tests with coverage:
- `flutter test --coverage`
- Convert `lcov.info` into readable html:
- Run `genhtml coverage/lcov.info -o coverage/index`
- Open `coverage/index/index.html` in your preferred browser.
### CI/CD ### CI/CD
- Refer [.travis.yml](../.travis.yml) and the [tool](../tool) directory to see how to test Flutter projects using Travis-CI. - Refer [.travis.yml](../.travis.yml) and the [tool](../tool) directory to see how to test Flutter projects using Travis-CI.

Loading…
Cancel
Save