karma-notify-reporter
Report test results using OSX Notification Center, Growl or notify-send.
![Downloads](https://img.shields.io/npm/dm/karma-notify-reporter.svg)
Built on top of node-notifier.
By default Notification Center will be used on Mac, notify-send will be used on Linux, and Growl will be used if neither Mac 10.8 or Linux.
Installation
npm install karma-notify-reporter --save-dev
Configuration
module.exports = function(config) {
config.set({
reporters: ['progress', 'notify'],
notifyReporter: {
reportEachFailure: true,
reportSuccess: false,
}
});
};
You can pass list of reporters as a CLI argument too:
karma start --reporters notify,dots