Yash R Hosalli

Results 11 comments of Yash R Hosalli

@liamappelbe @khushi-hura Hello everyone, I'm Yash! To tackle this issue, we can start by scanning all the .dart files in the package and comparing them with the coverage report. This...

@liamappelbe Thanks for the detailed feedback! I will update the PR, that I submitted earlier to reflect these suggestions. - I will integrate the changes into the formatter functions first...

@liamappelbe I have made the necessary updates as discussed: - Integrated the filtering functionality into the `collect` function using a `Function? filter` parameter. This allows for customizable file exclusion while...

Hi @liamappelbe, I’ve submitted a new PR that successfully implements the --include-uncovered flag for LCOV formatting, as discussed. This includes detection of all Dart files in the specified --report-on directory...

Hi @MelbourneDeveloper @mosuem I tried reproducing the issue, but the `coverage.lcov` file on my machine contains valid content. This suggests that coverage generation is working correctly in my setup. Could...

@liamappelbe I have updated the documentation for the `collect` function to include details about isolate groups. The changes clarify how isolate groups are handled during coverage collection and provide better...

@mosuem Hi.. I am presently a student studying Engineering, I am new to GIT HUB... And dont know how conversations work out, I thought using A.I to enhance the comments...

@kaushikbh99 @mosuem You can cover both `kIsWeb` and non-web conditions by running your tests separately for each platform. 1. **For web coverage**, run: ```sh flutter test --platform chrome This ensures...

@liamappelbe @henry2cox I have fixed the BRDA syntax issue in LCOV files as discussed. The fix ensures proper formatting, improving compatibility with coverage tools. All tests have passed successfully. I...

@liamappelbe **Thanks for the review!** I see your point regarding the need for changes in the Dart VM to correctly associate branch coverage for `else` statements. My fix in `package:coverage`...