We are setting up TeamCity to run our jasmine tests using node and karma.
The tests run fine and results are reported under the \"Tests\" tab in TeamCity.
Howeve
The easiest way to get TeamCity to recognize your coverage report is to output a build artifact that contains that nice html coverage report.
Edit the configuration settings for your build and under Artifact Paths add something like:
coverage/** => coverage.zip
TeamCity will recognize the coverage.zip artifact if it finds the index.html file in the root and will add a Code Coverage tab to each build.
Source: https://confluence.jetbrains.com/pages/viewpage.action?pageId=74847395#HowTo...-ImportcoverageresultsinTeamCity (Teamcity version 9.x)