rox-client-karma

0.1.1 • Public • Published

Karma reporter for ROX Center Clients

Karma reporter to send test results to ROX Center.

Usage

Add it as a development dependency:

npm install --save-dev rox-client-karma

And to your Karma configuration:

module.exports = function(config){
  config.set({
 
    files: ['*.test.js'],
    autoWatch: true,
    frameworks: ['jasmine'],
    browsers: ['Chrome', 'Firefox'],
 
    // add the reporter
    reporters: ['rox'],
 
    // customize the configuration
    rox: {
      config: {
        project: {
          category: 'Karma (Jasmine)'
        }
      }
    },
 
    plugins: [
      'karma-chrome-launcher',
      'karma-firefox-launcher',
      'karma-jasmine',
      'rox-client-karma' // register the plugin
    ]
  });
};

Contributing

  • Fork
  • Create a topic branch - git checkout -b feature
  • Push to your branch - git push origin feature
  • Create a pull request from your branch

Please add a changelog entry with your name for new features and bug fixes.

License

rox-client-karma is licensed under the MIT License. See LICENSE.txt for the full text.

Readme

Keywords

none

Package Sidebar

Install

npm i rox-client-karma

Weekly Downloads

0

Version

0.1.1

License

none

Last publish

Collaborators

  • alphahydrae
  • devops