karma-jasmine-html-reporter-livereload
v1.0.0
Published
A Karma plugin. Dynamically displays tests results at debug.html page and can be reloaded with livereload
Downloads
622
Maintainers
Readme
karma-jasmine-html-reporter-livereload
Reporter that dynamically shows tests results at debug.html page and can be reloaded with livereload.
Forked from karma-jasmine-html-reporter
Installation
The easiest way is to keep karma-jasmine-html-reporter-livereload
as a devDependency in your package.json
.
{
"devDependencies": {
"karma": "~0.10",
"karma-jasmine-html-reporter-livereload": "~1.0"
}
}
You can simple do it by:
npm install karma-jasmine-html-reporter-livereload --save-dev
Configuration
// 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