Web notification reporter for Karma
npm install karma-web-notification-reporter#karma-web-notification-reporter
!screenshot
bash
npm install karma-web-notification-reporter --save-dev
`
Configuration
`js
// 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
}
});
};
``