-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
52 lines (43 loc) · 1.09 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
//jshint strict: false
module.exports = function(config) {
config.set({
basePath: '.',
ngHtml2JsPreprocessor: {
stripPrefix: 'app/'
},
files: [
'app/lib/jquery/dist/jquery.js',
'app/lib/angular/angular.js',
'app/lib/angular-route/angular-route.js',
'app/lib/angular-sanitize/angular-sanitize.js',
'node_modules/angular-mocks/angular-mocks.js',
'app/lib/bootstrap/dist/js/bootstrap.js',
'app/main/mainModule.js',
'app/main/mainConfig.js',
'app/main/mainValue.js',
'app/main/mainService.js',
'app/main/mainProvider.js',
'app/main/mainFilter.js',
'app/main/mainController.js',
'app/main/mainDirective.js',
'app/main/mainComponent.js',
'app/app.js',
'app/appConfig.js',
'app/main/mainView.html',
'test/**/*Spec.js'
],
exclude: [
'**/*~'
],
preprocessors: {
'app/main/mainView.html': ['ng-html2js']
},
frameworks: ['jasmine'],
browsers: [
'Chrome',
'Firefox',
'PhantomJS'
],
reporters: ['progress'],
});
};