@clearbit-dcp/clearbit.js-core
Version:
The hassle-free way to integrate analytics into any web application.
54 lines (45 loc) • 1.09 kB
JavaScript
/* eslint-env node */
;
module.exports = function(config) {
config.set({
files: [
{ pattern: 'test/support/*.html', included: false },
// NOTE: This must run before all tests
'test/support/global.js',
'test/**/*.test.js'
],
browsers: ['PhantomJS'],
frameworks: ['browserify', 'mocha'],
reporters: ['spec'/* , 'coverage' */],
preprocessors: {
'test/**/*.js': 'browserify'
},
client: {
mocha: {
grep: process.env.GREP
}
},
browserify: {
debug: true
// Edge and Safari 9 still panic with coverage. Keeping disabled.
// transform: [
// [
// 'browserify-istanbul',
// {
// instrumenterConfig: {
// embedSource: true
// }
// }
// ]
// ]
}
// Edge and Safari 9 still panic with coverage. Keeping disabled.
// coverageReporter: {
// reporters: [
// { type: 'text' },
// { type: 'html' },
// { type: 'json' }
// ]
// }
});
};