karma.conf.js
392 Bytes
module.exports = function(config) {
config.set({
autoWatch : true,
browsers : ['Firefox'],
files : ['../vendor/*.js', '../lib/*.css', '../lib/*.js', 'lib/jasmine-jquery.js', 'lib/helper.js', 'options_spec.js', '*spec.js' ],
frameworks : ['jasmine'],
logLevel : config.LOG_ERROR,
port : 9876,
reporters : ['dots'],
singleRun : true
});
};