0.1.2 • Published 11 years ago

karma-dbus-reporter v0.1.2

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

karma-dbus-reporter

Report test results using D-Bus.

Installation

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

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

You can simple do it by:

npm install karma-dbus-reporter --save-dev

Configuration

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

    // this is optional
    dbusReporter: {
      prefix: 'My project',
      notifyOnlyFailures: true,
      timeout: 10
    }
  });
};

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

karma start --reporters dbus,dots

For more information on Karma see the homepage.