Skip to content

fumiakiy/karma-tap-reporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Karma plugin to report test results in TAP.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •