Skip to content

Instantly share code, notes, and snippets.

@juanpicado
Created October 15, 2016 14:16
Show Gist options
  • Save juanpicado/6ca258589f416a9b2755a2d8258651d4 to your computer and use it in GitHub Desktop.
Save juanpicado/6ca258589f416a9b2755a2d8258651d4 to your computer and use it in GitHub Desktop.
module.exports = function(config) {
config.set({
basePath: './',
autoWatch: true,
frameworks: ['mocha'],
files: [
'../src/js/*.js',
'./test/*.js'
],
browsers: ['PhantomJS', 'Chrome', 'Firefox'],
reporters: ['progress', 'coverage'],
preprocessors: { '../src/js/*.js': ['coverage'] },
singleRun: true
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment