Created
October 15, 2016 14:16
-
-
Save juanpicado/6ca258589f416a9b2755a2d8258651d4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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