Created
March 22, 2020 13:46
-
-
Save MufidJamaluddin/33e375c21671e7dad9449d481a8faae7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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