forked from marshell08/grafana-plugins
-
Notifications
You must be signed in to change notification settings - Fork 23
/
karma.conf.js
46 lines (37 loc) · 1.01 KB
/
karma.conf.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
35
36
37
38
39
40
41
42
43
44
45
module.exports = function(config) {
'use strict';
config.set({
frameworks: ['browserify', 'mocha', 'expect'],
plugins : [
'karma-browserify',
'karma-mocha',
'karma-expect',
'karma-phantomjs-launcher'
],
// list of files / patterns to load in the browser
files: [
'node_modules/es6-shim/es6-shim.js',
'node_modules/systemjs/dist/system.src.js',
'node_modules/angular/angular.js',
'node_modules/angular-mocks/angular-mocks.js',
'node_modules/lodash/lodash.js',
'dist/specs/gnocchi-datasource-specs.js',
],
preprocessors: {
'dist/specs/gnocchi-datasource-specs.js': ['browserify'],
},
// list of files to exclude
exclude: [],
reporters: ['dots'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['PhantomJS'],
captureTimeout: 20000,
singleRun: true,
autoWatchBatchDelay: 1000,
browserNoActivityTimeout: 60000,
browserify: {debug:true}
});
};