I have a blazor app with many components. Running unit test for those components on Visual Studio gives me the fully coverage report.
As scan code with SonarQube using MSBuild Scanner, my unit test command is:
dotnet test .\Tests\App.Test.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=opencover --logger trx
yet there’s no coverage report on the .razor files .
I am wondering if there’s any missing item in my config file SonarQube.Analysis.xml.
Thank you.