forked from angular-ui/ui-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.js
54 lines (49 loc) · 1.18 KB
/
karma.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
var util = require('../lib/grunt/utils.js');
module.exports = function( grunt ){
var baseConfig = {
options: {
configFile: 'test/karma.conf.js',
background: true,
},
// dev: {
// singleRun: false,
// background: true
// },
single: {
background: false,
singleRun: true,
reporters: ['progress'],
reportSlowerThan: 200,
preprocessors: {
'src/**/*.js': ['coverage'],
'**/*.html': ['ng-html2js']
},
ngHtml2JsPreprocessor: {
moduleName: 'directives'
},
coverageReporter: {
reporters: [
{type: 'html', dir: 'modulescoverage/'},
{type: 'cobertura'}
]
}
},
travis: {
background: false,
singleRun: true,
reporters: ['dots']
}
};
var core = grunt.option('core');
if (core) {
baseConfig.options.files = util.testDependencies.unit
.concat(util.angularFiles(util.latestAngular()))
.concat(util.testFiles.core_unit);
}
else {
baseConfig.options.files = util.testDependencies.unit
.concat(util.angularFiles(util.latestAngular()))
.concat(util.testFiles.unit);
}
return baseConfig;
};