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

19 lines
429 B
JavaScript

module.exports = function(config) {
config.set({
frameworks: ['browserify', 'jasmine'],
files: [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'hint.js',
'hintApp.js',
'hintCtrl.js',
'hintService.js',
'*_test.js'
],
exclude: [],
preprocessors: {
'hint.js': [ 'browserify' ]
},
browsers: ['Chrome'],
});
};