-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkarma.config.js
More file actions
37 lines (31 loc) · 947 Bytes
/
karma.config.js
File metadata and controls
37 lines (31 loc) · 947 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
33
34
35
36
37
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
browsers: ['PhantomJS'],
// list of files / patterns to load in the browser
// prefer to run on the built ones in public
files: [
'public/javascript/vendor.js',
'bower_components/angular-mocks/angular-mocks.js',
'public/javascript/templates.js',
'public/javascript/app.js',
'app/**/*.spec.js'
],
// list of files to exclude
exclude: [
],
preprocessors: {},
reporters: ['progress'],
// web server port
port: 9876,
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
autoWatch: true,
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false
});
};