-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
31 lines (24 loc) · 743 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
/* global module */
module.exports = function (config) {
'use strict';
config.set({
autoWatch: true,
singleRun: false,
frameworks: ['jspm', 'jasmine'],
files: [
'node_modules/karma-babel-preprocessor/node_modules/babel-core/browser-polyfill.js',
{pattern: 'app/assets/images/**/*.png', watched: false, included: false, served: true},
],
jspm: {
config: 'app/jspm-config/config-karma.js',
loadFiles: [
'build/development/**/*.js'
]
},
browsers: ['PhantomJS'],
proxies: {
'/assets/images/': '/base/app/assets/images/'
},
reporters: ['dots'],
});
};