0.0.3 • Published 9 years ago

karma-notify-send-reporter v0.0.3

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
9 years ago

karma-notify-send-reporter

Report test results using notify-send.

Installation

npm install karma-notify-send-reporter

Configuration

// 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