Skip to content

Instantly share code, notes, and snippets.

@MufidJamaluddin
Created March 22, 2020 13:46
Show Gist options
  • Save MufidJamaluddin/33e375c21671e7dad9449d481a8faae7 to your computer and use it in GitHub Desktop.
Save MufidJamaluddin/33e375c21671e7dad9449d481a8faae7 to your computer and use it in GitHub Desktop.
cd ./tests/SmartLibrary.UnitTests
dotnet test /p:CollectCoverage=true ^
/p:CoverletOutputFormat=cobertura ^
/p:CoverletOutput=./../../test_results/UnitTests/ ^
/p:Exclude="[xunit.*]*
cd ./../../
cd ./tests/SmartLibrary.Web.IntegrationTests
dotnet test /p:CollectCoverage=true ^
/p:CoverletOutputFormat=cobertura ^
/p:CoverletOutput=./../../test_results/IntegrationTests/ ^
/p:Exclude="[xunit.*]*
cd ./../../
cd ./src/SmartLibrary.Web.FrontEnd
npm run test:ci
cd ./../../
tools\reportgenerator.exe ^
"-reports:test_results\*Tests\*.xml" ^
"-targetdir:test_results\Coverage" ^
-reporttypes:HTML;HTMLSummary
start test_results\Coverage\index.htm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment