You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
414 B

module.exports = function(config) {
config.set({
browsers: [ 'Chrome', 'Firefox', 'Safari' ],
frameworks: [ 'mocha' ],
files: [
// Include requirejs presence
// './test/vendor/require.js',
'./test/unit/build/browserified-tests.js'
],
client: {
mocha: {
reporter: 'html',
ui: 'bdd'
}
},
reporters: [ 'nyan' ],
singleRun: true
});
};