Reporter that dynamically shows tests results at debug.html page. Jasmine 1.3 is not supported.
You can also run describe block, or single test.
The easiest way is to keep karma-jasmine-html-reporter as a devDependency in your package.json.
{
"devDependencies": {
"karma": "~0.10",
"karma-jasmine-html-reporter": "~0.1"
}
}You can simple do it by:
npm install karma-jasmine-html-reporter --save-dev// karma.conf.js
module.exports = function(config) {
config.set({
reporters: ['html']
});
};You can pass list of reporters as a CLI argument too:
karma start --reporters html
