karma-notify-send-reporter
v0.0.3
Published
A Karma plugin. Reports results with notify-send.
Maintainers
Readme
karma-notify-send-reporter
Report test results using notify-send.
Installation
npm install karma-notify-send-reporterConfiguration
// karma.conf.js
module.exports = function(config) {
config.set({
reporters: ['progress', 'notify-send'],
});
};You can pass list of reporters as a CLI argument too:
karma start --reporters notify-send,dots