-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
34 lines (32 loc) · 887 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
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['mocha','chai','riot'],
plugins: [
'karma-mocha',
'karma-mocha-reporter',
'karma-phantomjs-launcher',
'karma-chai',
'karma-riot'
],
files: [
'node_modules/phantomjs-polyfill-object-assign/object-assign-polyfill.js',
'node_modules/babel-polyfill/dist/polyfill',
'node_modules/chai/chai',
'public/app.js',
'test/client/**/*.js'
],
preprocessors: {
'**/*.tag': ['riot']
},
riotPreprocessor: {
options: {
type: 'es6'
}
},
browsers: ['PhantomJS'],
reporters: ['mocha'],
failOnEmptyTestSuite: false,
autoWatch: true
});
};