0.0.6 • Published 7 years ago

karma-web-notification-reporter v0.0.6

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

#karma-web-notification-reporter

screenshot

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.