module.exports = function () { return { testFramework: 'mocha', files: [ 'index.js', 'lib/**/*.js', 'tests/test-utils/index.utils.js' ], tests: [ 'tests/**/*.spec.js' ], env: { type: 'node', runner: 'node' // or full path to any node executable }, workers: { initial: 6, regular: 2, }, bootstrap: (wallaby) => { const mocha = wallaby.testFramework; mocha.ui('bdd'); require('./tests/test-utils/index.utils.js'); } }; };