Karma tape adapter

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

Installation

npm

npm install karma-tape-parser --save-dev

This was cloned from karma-tap. I just updated to the newest version of tap-parser because of several issues that was showing up while running tests. It will follow the same structure as Karma tap. https://github.com/bySabi/karma-tap/

Configuration Example

karma.conf.js

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

TAP Protocol

Support TAP Protocol version 13

Credits

License

ISC