-
Notifications
You must be signed in to change notification settings - Fork 4
/
karma.config.js
34 lines (27 loc) · 865 Bytes
/
karma.config.js
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
// Karma configuration
// Generated on Tue Feb 04 2014 11:26:17 GMT-0500 (EST)
module.exports = function(config) {
config.set({
// frameworks to use
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'vendor/angular/angular.js',
'vendor/angular-resource/angular-resource.js',
'vendor/angular-mocks/angular-mocks.js',
'./**/*.js',
],
exclude: [],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
reporters: ['progress'],
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
port: 9876,
colors: true,
autoWatch: true,
browsers: ['Chrome'],
captureTimeout: 60000,
singleRun: false
});
};