-
Notifications
You must be signed in to change notification settings - Fork 1
/
karma.conf.js
82 lines (71 loc) · 3.02 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
Copyright 2014 Ricardo Tubio-Pardavila
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
module.exports = function (config) {
'use strict';
config.set({
basePath: '.',
frameworks: ['jasmine', 'jasmine-diff-print'],
files: [
'node_modules/jquery/dist/jquery.js',
'node_modules/angular/angular.js',
'node_modules/angular-mocks/angular-mocks.js',
'node_modules/angular-animate/angular-animate.js',
'node_modules/angular-aria/angular-aria.js',
'node_modules/angular-cookies/angular-cookies.js',
'node_modules/angular-material/angular-material.js',
'node_modules/angular-resource/angular-resource.js',
'node_modules/leaflet/dist/leaflet.js',
'node_modules/angular-leaflet-directive/dist/angular-leaflet-directive.js',
'node_modules/moment/min/moment-with-locales.min.js',
'node_modules/angular-loading-bar/build/loading-bar.js',
'node_modules/libs/*.js',
'src/common/**/*.js',
'src/common/templates/**/*.html',
'src/operations/**/*.js',
'src/operations/templates/**/*.html'
],
exclude: [],
preprocessors: {
'src/common/directives/**/*.js': ['coverage'],
'src/common/services/**/*.js': ['coverage'],
'src/operations/controllers/**/*.js': ['coverage'],
'src/operations/directives/**/*.js': ['coverage'],
'src/common/templates/**/*.html': ['ng-html2js'],
'src/operations/templates/**/*.html': ['ng-html2js']
},
ngHtml2JsPreprocessor: {
moduleName: 'templates',
// The following function removes the first directory from the
// given path for a template since those are omitted within the
// distributable template packages and, therefore, they are also
// omitted within the <templateUrl> parameter of the definition of
// the directive.
cacheIdFromPath: function (filepath) {
var regex = /^(\w+\/)/;
return filepath.replace(regex, '');
},
},
reporters: ['progress', 'coverage', 'coveralls'],
coverageReporter: {
type: 'lcov',
repoToken: '',
dir: '.coverage/'
},
port: 9876,
colors: true,
logLevel: config.LOG_DISABLE,
autoWatch: true,
browsers: ['PhantomJS'],
singleRun: true
});
};