Tero Parviainen b11cf9419f chore(upgrade): rename package.json, tsconfig.json, and karma.conf.js
Add *.1.* to filenames so that they are available for shredding.
2015-12-15 18:56:21 +02:00

41 lines
994 B
JavaScript

module.exports = function(config){
config.set({
basePath : '..',
// #docregion files
files : [
'app/bower_components/angular/angular.js',
'app/bower_components/angular-route/angular-route.js',
'app/bower_components/angular-resource/angular-resource.js',
'app/bower_components/angular-animate/angular-animate.js',
'app/bower_components/angular-mocks/angular-mocks.js',
'node_modules/systemjs/dist/system.src.js',
'test/karma_test_shim.js',
{pattern: 'app/js/**/*.js', included: false, watched: true},
{pattern: 'test/unit/**/*.js', included: false, watched: true}
],
// #enddocregion files
autoWatch : true,
frameworks: ['jasmine'],
browsers : ['Chrome', 'Firefox'],
plugins : [
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-jasmine'
],
junitReporter : {
outputFile: 'test_out/unit.xml',
suite: 'unit'
},
logLevel: 'LOG_DEBUG'
});
};