Commit 72f6805c authored by Evren Kutar's avatar Evren Kutar

add new scripts to test config

parent 35779b1e
module.exports = function(config){ module.exports = function (config) {
config.set({ config.set({
basePath : './', basePath: './',
files : [ files: [
'app/bower_components/angular/angular.js', 'app/bower_components/angular/angular.js',
'app/bower_components/angular-route/angular-route.js', 'app/bower_components/angular-route/angular-route.js',
'app/bower_components/angular-mocks/angular-mocks.js', 'app/bower_components/angular-mocks/angular-mocks.js',
'app/components/**/*.js', 'app/components/**/*.js',
'app/view*/**/*.js' 'app/view*/**/*.js',
], 'app/login/*.js',
'app/dashboard/*.js'
],
autoWatch : true, autoWatch: true,
frameworks: ['jasmine'], frameworks: ['jasmine'],
browsers : ['Chrome'], browsers: ['Chrome'],
plugins : [ plugins: [
'karma-chrome-launcher', 'karma-chrome-launcher',
'karma-firefox-launcher', 'karma-firefox-launcher',
'karma-jasmine', 'karma-jasmine',
'karma-junit-reporter' 'karma-junit-reporter'
], ],
junitReporter : { junitReporter: {
outputFile: 'test_out/unit.xml', outputFile: 'test_out/unit.xml',
suite: 'unit' suite: 'unit'
} }
}); });
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment