forked from gladiussdv/angular-tree-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
56 lines (46 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
module.exports = function (config) {
'use strict';
var cfg = {
bowerComponents: 'demo/framework/vendor'
};
config.set(
{
basePath: './',
frameworks: ['jasmine'],
autoWatch: false,
browsers: ['Chrome', 'Firefox', 'PhantomJS'],
// files to load in the browser
files: [
// components
cfg.bowerComponents + '/angular/angular.js',
cfg.bowerComponents + '/angular-mocks/angular-mocks.js',
cfg.bowerComponents + '/angular-route/angular-route.js',
cfg.bowerComponents + '/bootstrap-css/js/bootstrap.js',
// source files
'dist/**/*.js',
'demo/**/*.js'
],
plugins: [
'karma-phantomjs-launcher',
'karma-jasmine'
],
// 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_ERROR || config.LOG_WARN || config.LOG_DEBUG,
port: 9876,
reporters: 'dots',
singleRun: true
}
);
};