wages-ws
Version:
This server read data from a cassandra DB and provide services for MyWagesApp
28 lines • 773 B
JavaScript
module.exports = function(config){
config.set({
basePath:'',
autoWatch:true,
frameworks:['mocha'],
files:[
'web_service_test.js',
'test/*.js'
],
pulugins:[
'karma-coverage',
'karma-mocha',
'karma-phantomjs-launcher'
],
browsers:['Firefox'],
reporters:['progress','coverage'],
preprocessors:{'*.js':['coverage']},
singleRun:true,
coverageReporter:{
dir:'coverage/',
reporters:[
{type:'html', subdir:'html'},
{type:'lcovonly', subdir:'lcov'},
{type:'cobertura', subdir:'cobertura'}
]
}
});
};