Skip to content

Instantly share code, notes, and snippets.

@adamrights
Created September 17, 2013 20:16
Show Gist options
  • Save adamrights/6599969 to your computer and use it in GitHub Desktop.
Save adamrights/6599969 to your computer and use it in GitHub Desktop.
// karma.conf.js
module.exports = function(config) {
config.set({
frameworks: ['mocha'],
files: [
'code/*.js',
'test/*.js'
],
browsers: process.env.TRAVIS ? ['Firefox'] : ['Chrome'],
autoWatch: true
});
};
/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment