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,
frameworks: [ 'browserify',
'mocha',
'chai',
'sinon-chai'],
files: [
'test/spec/**/*Spec.js',
'test/integration/**/*Spec.js'
frameworks: [
'browserify',
'mocha',
'chai',
'sinon-chai'
],
reporters: [ 'dots' ],
files: [
'test/**/*Spec.js'
],
preprocessors: {
'test/spec/**/*Spec.js': [ 'browserify' ],
'test/integration/**/*Spec.js': [ 'browserify' ]
'test/**/*Spec.js': [ 'browserify' ]
},
reporters: [ 'dots' ],
browsers: [ 'PhantomJS' ],
browserNoActivityTimeout: 30000,