You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
angularjs-batarang/karma.conf.js

22 lines
454 B
JavaScript

/*
* This karma conf tests just the panel app
*/
module.exports = function(config) {
config.set({
frameworks: ['browserify', 'jasmine'],
files: [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'panel/app.js',
'panel/**/*.js',
'panel/**/*.spec.js'
],
exclude: [],
preprocessors: {
'hint.js': [ 'browserify' ]
},
browsers: ['Chrome'],
});
};