-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.conf.js
More file actions
24 lines (24 loc) · 766 Bytes
/
Copy pathkarma.conf.js
File metadata and controls
24 lines (24 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module.exports = function(config) {
config.set({
frameworks: ['jasmine'],
reporters: ['spec'],
browsers: ['PhantomJS'],
// list of files / patterns to load in the browser
files: [
'bower_components/angular/angular.min.js',
'bower_components/angular-route/angular-route.min.js',
'node_modules/angular-mocks/angular-mocks.js',
'app/core/core.module.js',
'app/dogs/idog.js',
'app/core/config.js',
'app/core/constants.js',
'app/objects/dogObject.module.js',
'app/objects/dogObject.js',
'app/dogs/dog.module.js',
'app/dogs/dogController.js',
'test/*.js',
'test/**/*Spec.js'
],
plugins : ['karma-jasmine', 'karma-phantomjs-launcher', 'karma-spec-reporter']
});
};