work.suroh.tk/node_modules/filing-cabinet/wallaby.conf.js

23 lines
385 B
JavaScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
module.exports = function (w) {
return {
files: [
'index.js',
'test/**/*.js?(x)',
'!test/test.js'
],
tests: [
'test/test.js',
],
env: {
type: 'node'
},
// or any other supported testing framework:
// https://wallabyjs.com/docs/integration/overview.html#supported-testing-frameworks
testFramework: 'mocha'
};
};