stumpy
Version:
The Kickass Logger
31 lines (28 loc) • 720 B
JavaScript
// Karma configuration
require('phantomjs-prebuilt').path = './node_modules/.bin/phantomjs';
module.exports = function(config) {
config.set({
files: [
'./node_modules/sprintf-js/src/sprintf.js',
'./lib/stumpy.js',
'test/*.js'
],
frameworks: ['mocha','chai'],
client: {
mocha: {
ui: 'bdd'
}
},
plugins: [
// these plugins will be require() by Karma
'karma-mocha'
,'karma-chai'
,'karma-chrome-launcher'
,'karma-phantomjs-launcher'
],
browsers: [
//'Chrome',
'phantomjs'
]
});
};