chore(test): clean up karma config

This commit is contained in:
Nico Rehwaldt 2015-10-10 01:35:41 +02:00 committed by pedesen
parent 21d68799ad
commit 17c074464c

View File

@ -12,23 +12,23 @@ module.exports = function(karma) {
basePath: basePath, basePath: basePath,
frameworks: [ 'browserify', frameworks: [
'mocha', 'browserify',
'chai', 'mocha',
'sinon-chai'], 'chai',
'sinon-chai'
files: [
'test/spec/**/*Spec.js',
'test/integration/**/*Spec.js'
], ],
reporters: [ 'dots' ], files: [
'test/**/*Spec.js'
],
preprocessors: { preprocessors: {
'test/spec/**/*Spec.js': [ 'browserify' ], 'test/**/*Spec.js': [ 'browserify' ]
'test/integration/**/*Spec.js': [ 'browserify' ]
}, },
reporters: [ 'dots' ],
browsers: [ 'PhantomJS' ], browsers: [ 'PhantomJS' ],
browserNoActivityTimeout: 30000, browserNoActivityTimeout: 30000,