coverage
coverage copied to clipboard
Dart coverage data manipulation and formatting
Sometimes coverage is gathered from external packages even when `--scope-output` flag is used and set to the name of the app's package. **Reproduction** 1. Create a new dart project with...
We use the following configuration for GitHub actions to collect coverage. ```yaml - name: Install coverage run: dart pub global activate coverage - name: Collect coverage run: dart pub global...
If a file is not imported by the tests, it will not be compiled, so won't be mentioned in the source report. The compiler/VM won't be aware that the file...
### To reproduce 1. update to Flutter 3.22.0, I use FVM 2. `dart create test_project` 3. `cd test_project` 4. `dart pub global run coverage:test_with_coverage --package . --package-name test_project` 5. The...