karma-jasmine-html-cards-reporter
v1.0.4
Published
A Karma plugin. Dynamically displays tests results at debug.html page
Downloads
125
Maintainers
Readme
karma-jasmine-cards-html-reporter
Reporter that dynamically shows tests results at debug.html page.
Jasmine 1.3 is not supported. For Jasmine < 3.0.0, use version 0.2.2
You can also run a describe block, or a single test.
Installation
You can simply install karma-jasmine-html-cards-reporter
as a devDependency by:
npm install karma-jasmine-html-cards-reporter --save-dev
Configuration
// karma.conf.js
plugins: [
require('karma-jasmine-html-cards-reporter'),
]
module.exports = function (config) {
config.set({
reporters: ["kjchtml"],
});
};
You can pass a list of reporters as a CLI argument too:
karma start --reporters kjchtml