biofriction-wp-theme/node_modules/browserify-zlib/karma.conf.js

12 lines
295 B
JavaScript

module.exports = function (karma) {
karma.set({
frameworks: ['mocha'],
files: ['test/tmp/browserified.js'],
reporters: ['mocha-own'],
mochaOwnReporter: {
reporter: 'spec'
},
browsers: process.env.TRAVIS ? ['Firefox', 'PhantomJS'] : ['Chrome', 'PhantomJS']
})
}