UNPKG

404 BJavaScriptView Raw
1module.exports = function (wallaby) {
2 return {
3 files: [
4 {pattern: 'node_modules/chai/chai.js', instrument: false},
5 'src/**/*.js'
6 ],
7 tests: [
8 'test/**/*.js'
9 ],
10 testFramework: 'mocha',
11 compilers: {
12 '**/*.js': wallaby.compilers.babel()
13 },
14 env: {
15 type: 'node'
16 }
17 };
18};