Code coverage results not appearing in VS 2013 using Chutzpah

95 Views Asked by At

I have configured Chutzpah nuget package in VS 2013 Premium. I am using jasmine to write my test cases, I am able to see the tests are running on the Unit test windows but I am not able to see the Code coverage results tests and code coverage for my javascript code. The browser doesnt show the code coverage results.

Note: I am not able to see tests and coverage both, below window is from Resharper which recognises the tests.

enter image description here

My chutzpah.json file looks like this:

{
"Framework" : "jasmine",
"TestHarnessReferenceMode": "AMD",
"TestHarnessLocationMode": "SettingsFileAdjacent",
"References":[
    { "Path" : "../../Views/Claim/Startup/ClaimStartup.main.js"},
    { "Path" : "../../Scripts/jasmine-2.7.0/jasmine_favicon.png"},
    { "Path" : "../../Scripts/jasmine-2.7.0/jasmine.css"},
    { "Path" : "../../Scripts/jasmine-2.7.0/jasmine.js" },
    { "Path" : "../../Scripts/jasmine-2.7.0/jasmine-html.js"},
    { "Path" : "../../Scripts/jasmine-2.7.0/boot.js" },
    { "Path" : "../../Scripts/jquery/1.10.2/jquery-1.10.2.js"},
    { "Path" : "../../Scripts/Common.js"},
    { "Path" : "../../Views/Claim/Startup/ClaimStartup.ui.js" }
],
"Tests": [
  { "Path" : "ClaimStartup.main.spec.js"}
],
"CodeCoverageExecutionMode": "Always",
"EnableCodeCoverage": "true",
"CodeCoverageIncludes": ["../../Views/Claim/Startup/*"]
}

And this file I have placed under my tests folder. Please let me know what I am missing to configure this properly.

Thanks

0

There are 0 best solutions below