-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
41 lines (31 loc) · 1.04 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
module.exports = function (config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
browsers: ['PhantomJS'],
frameworks: ['jasmine', 'browserify', 'viewport'],
files: [
'./node_modules/rx/dist/rx.all.js',
'./node_modules/angular/angular.js',
'./node_modules/angular-media-queries/match-media.js',
'./node_modules/rx-angular/dist/rx.angular.js',
'./node_modules/angular-mocks/angular-mocks.js',
'./src/angular-responsify.js',
'./src/angular-responsify.spec.js',
],
preprocessors: {
'./src/angular-responsify.js': ['browserify'],
'./src/angular-responsify.spec.js': ['browserify'],
},
browserify: {
debug: true,
transform: [
['babelify', { 'presets': ['es2015'] }],
]
},
reporters: ['spec'],
colors: true,
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_ERROR
});
};