karma-web-notification-reporter
v0.0.6
Published
Web notification reporter for Karma
Downloads
6
Readme
#karma-web-notification-reporter
Installation
npm install karma-web-notification-reporter --save-dev
Configuration
// karma.conf.js
module.exports = function(config) {
config.set({
plugins: [
require('karma-web-notification-reporter')
],
reporters: ['progress', 'web-notification'],
client: {
clearContext: false // make sure this is set to "false", otherwise it won't work
}
});
};
For more information about Karma see the homepage.