1.0.3 • Published 9 years ago

karma-tape-reporter v1.0.3

Weekly downloads
381
License
MIT
Repository
github
Last release
9 years ago

karma-tape-reporter Build Status npm.io npm.io npm.io npm.io

Karma plugin to report test results that mimics tape.

Installation

npm install --save-dev karma-tape-reporter

Configuration

// karma.conf.js

module.exports = function(config) {
  config.set({
    // ...

    reporters: ['tape'],

    // ...
  });
};