0.1.1 • Published 10 years ago
rox-client-karma v0.1.1
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.