Commit 2d48e5e3 authored by Evren Kutar's avatar Evren Kutar

add new scripts to test config

parent 843b2093
module.exports = function(config){
config.set({
module.exports = function (config) {
config.set({
basePath : './',
basePath: './',
files : [
'app/bower_components/angular/angular.js',
'app/bower_components/angular-route/angular-route.js',
'app/bower_components/angular-mocks/angular-mocks.js',
'app/components/**/*.js',
'app/view*/**/*.js'
],
files: [
'app/bower_components/angular/angular.js',
'app/bower_components/angular-route/angular-route.js',
'app/bower_components/angular-mocks/angular-mocks.js',
'app/components/**/*.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-firefox-launcher',
'karma-jasmine',
'karma-junit-reporter'
],
],
junitReporter : {
outputFile: 'test_out/unit.xml',
suite: 'unit'
}
junitReporter: {
outputFile: 'test_out/unit.xml',
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