forked from esvit/ng-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
38 lines (31 loc) · 830 Bytes
/
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
// Karma configuration file
// See http://karma-runner.github.io/0.10/config/configuration-file.html
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
// libraries
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
// directive
'ng-table.src.js',
// tests
'test/*.js'
//'test/tableParamsSpec.js'
//'test/tableControllerSpec.js'
],
// generate js files from html templates
preprocessors: {
'*.js': 'coverage'
},
reporters: ['progress', 'coverage'],
autoWatch: true,
browsers: ['PhantomJS'],
coverageReporter: {
type: 'lcov',
dir : 'out/coverage'
}
});
};