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