Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

karma-tap

bySabi2.1kISC4.2.0

Karma Adapter to tape testing framework

karma, karma-plugin, karma-adapter, karma-framework, tape, tap

readme

Karma TAP adapter

npm version npm downloads Build Status Windows Tests Donate

This Karma adapter reads TAP output from runners like tape into Karma

Works with Karma 1_, _2, 3_ and _4

Installation

npm

npm install karma-tap --save-dev

ES5 browser support

If needed ES5 browser support, Ex. IE11, use karma-tap 3.x.x branch

Configuration Example

karma.conf.js

module.exports = function(config) {
  config.set({
    frameworks: ['browserify', 'tap'],
    files: [
      'test/**/*.js'
    ],
    preprocessors: {
      'test/**/*.js': [ 'browserify' ]
    }
  });
};

Projects using karma-tap

TAP Protocol

Support TAP Protocol version 13

Credits

author

current mantainers

contributors

Contributing

  • Documentation improvement
  • Feel free to send any PR

License

ISC