2015-08-27 02:45:12 +00:00
|
|
|
/*eslint-disable */
|
|
|
|
var babel = require('babel');
|
|
|
|
|
|
|
|
module.exports = function(wallaby) {
|
|
|
|
return {
|
|
|
|
files: [
|
|
|
|
'lib/**/*.js',
|
|
|
|
],
|
|
|
|
tests: [
|
|
|
|
'test/**/*-spec.js',
|
|
|
|
],
|
|
|
|
compilers: {
|
|
|
|
'**/*.js': wallaby.compilers.babel({babel: babel, stage: 1}),
|
|
|
|
},
|
|
|
|
env: {
|
|
|
|
type: 'node',
|
|
|
|
},
|
2015-10-11 22:54:02 +00:00
|
|
|
testFramework: 'mocha',
|
2015-08-27 02:45:12 +00:00
|
|
|
};
|
|
|
|
};
|