karma-tap-reporter

0.0.6 • Public • Published

karma-tap-reporter

VERY simple Karma plugin to report test results in TAP.

Installation

package.json

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-tap-reporter": "~0.0.6"
  }
}

Configuration

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

Optionally you can save report to a file and turn off output to the console.

reporters: ['tap'],
 
tapReporter: {
  outputFile: './unit.tap',
  disableStdout: true
}

For more information on Karma see the homepage.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i karma-tap-reporter

      Weekly Downloads

      1,055

      Version

      0.0.6

      License

      MIT

      Last publish

      Collaborators

      • fumiakiy