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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.6
    2,808
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.6
    2,808
  • 0.0.5
    7
  • 0.0.4
    35
  • 0.0.3
    60
  • 0.0.2
    6

Package Sidebar

Install

npm i karma-tap-reporter

Weekly Downloads

951

Version

0.0.6

License

MIT

Last publish

Collaborators

  • fumiakiy