rallly/public/vendor/angular-modal/karma.conf.js
2015-01-14 00:21:39 +01:00

30 lines
No EOL
581 B
JavaScript

module.exports = function(config){
config.set({
basePath : './',
files : [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'modal.js',
'modal.spec.js'
],
autoWatch : true,
frameworks: ['jasmine'],
browsers : ['Chrome'],
plugins : [
'karma-junit-reporter',
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-jasmine'
],
junitReporter : {
outputFile: 'test_out/unit.xml',
suite: 'unit'
}
})}