-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.conf.js
More file actions
32 lines (28 loc) · 808 Bytes
/
karma.conf.js
File metadata and controls
32 lines (28 loc) · 808 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
25
26
27
28
29
30
31
32
// Karma configuration
// Generated on Wed Mar 29 2017 12:11:01 GMT+0200 (CEST)
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
'bower_components/angular/angular.min.js',
'bower_components/angular-ui-router/release/angular-ui-router.min.js',
'bower_components/angular-mocks/angular-mocks.js',
'app/app.js',
'app/config.js',
'app/services/gnomeFactory.js',
'app/services/gnomeFactory.Spec.js'
],
exclude: [],
preprocessors: {},
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
// feel free to change browser to adjust to your browser
browsers: ['Chromium'],
singleRun: false,
concurrency: Infinity
})
}