coverage icon indicating copy to clipboard operation
coverage copied to clipboard

Dart coverage data manipulation and formatting

Results 44 coverage issues
Sort by recently updated
recently updated
newest added

I was told to report [this issue](https://github.com/flutter/flutter/issues/144124) here. ### Steps to reproduce - Run `dart create dart_test` - Add the following to `lib/dart_test.dart` ```dart String doSomething(bool flag) { if (flag...

Sometimes I want to gather coverage for multiple packages in a mono_repo. I tried to be smart, and run things in parallel, but that doesn't work: ``` $ (cd ../native_assets_cli/...

In my case, I have developed apps for mobile and web both cases in one project, Now I write unit cases and set for code coverage, but in my case...

## Details ### Case 1 - command invoked through `dart pub global run` When running the following command: ```sh dart pub global run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --report-on=lib ``` The...

This never prints 42 when it's run using `--pause-isolates-on-exit`. ``` import 'dart:isolate'; void main() async { print(await Isolate.run(() => 42)); } ``` And since coverage uses the `--pause-isolates-on-exit` flag (presumably...

We have a bunch of version checks for the VmService version, and a bunch of checks that are skipped for old SDKs. Some of these are very old, and can...

See https://github.com/dart-lang/ecosystem/blob/main/pkgs/firehose/README.md

The `--test` param seems to throw errors if args are added. I am attempting to set the concurrency of my `dart test` command to a concurrency of 1. command: ```...

See https://github.com/linux-test-project/lcov/issues/221

I have a simple shelf server app. I have six tests. They run correctly, but the tool doesn't generate any code coverage. [✓] Flutter (Channel stable, 3.10.1, on macOS 13.3.1...