-
Notifications
You must be signed in to change notification settings - Fork 314
/
karma.conf.js
47 lines (37 loc) · 1.11 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
46
47
module.exports = function (config) {
'use strict';
var cfg = {
bowerComponents: 'demo/bower_components'
};
config.set({
basePath: '',
frameworks: ['jasmine'],
// files to load in the browser
files: [
// components
cfg.bowerComponents + '/angular/angular.js',
cfg.bowerComponents + '/angular-mocks/angular-mocks.js',
// source files
'source/**/*main.js',
'source/**/*.js',
// tests
'test/**/*.spec.js'
],
// generate js files from html templates to expose them during testing
preprocessors: {
'**/*.html': 'ng-html2js'
},
// https://github.com/karma-runner/karma-ng-html2js-preprocessor#configuration
ngHtml2JsPreprocessor: {
// setting this option will create only a single module that contains templates
// from all the files, so you can load them all with module('foo')
},
// files to exclude
exclude: [],
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO,
port: 9876,
reporters: 'dots'
});
};