mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2024-12-28 22:23:33 +01:00
33 lines
682 B
JavaScript
33 lines
682 B
JavaScript
module.exports = function(config){
|
|
config.set({
|
|
|
|
basePath : '../',
|
|
|
|
files : [
|
|
'app/bower_components/angular/angular.js',
|
|
'app/bower_components/angular-ui-router/release/angular-ui-router.js',
|
|
'app/bower_components/angular-mocks/angular-mocks.js',
|
|
'app/js/**/*.js',
|
|
'test/unit/**/*.js'
|
|
],
|
|
|
|
autoWatch : true,
|
|
|
|
frameworks: ['jasmine'],
|
|
|
|
browsers : ['Chrome'],
|
|
|
|
plugins : [
|
|
'karma-chrome-launcher',
|
|
'karma-firefox-launcher',
|
|
'karma-jasmine',
|
|
'karma-junit-reporter'
|
|
],
|
|
|
|
junitReporter : {
|
|
outputFile: 'test_out/unit.xml',
|
|
suite: 'unit'
|
|
}
|
|
|
|
});
|
|
};
|