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

Package detail

rox-client-karma

lotaris70.1.1

Karma reporter for ROX Center clients.

readme

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.

changelog

Changelog

v0.1.0 - October 14, 2014

  • First version.