/karma-beep-reporter

A Karma reporter that beeps when there are failed tests

Primary LanguageJavaScriptMIT LicenseMIT

karma-beep-reporter

A 3rd party Karma reporter that beeps when there are failed tests. It's designed to work with other visual reporters

Installation

The easiest way is to keep karma-beep-reporter as a devDependency in your package.json.

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-beep-reporter": "~0.1"
  }
}

You can simple do it by:

npm install karma-beep-reporter -g --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    reporters: ['progress', 'beep'],
  });
};

You can pass list of reporters as a CLI argument too:

karma start --reporters beep,dots

For more information on Karma see the homepage.

License

karma-beep-reporter is MIT licensed.