wallaby.js 213 B

1234567891011121314151617
  1. module.exports = function () {
  2. return {
  3. files: [
  4. 'lib/**/*@(.js)'
  5. ],
  6. tests: [
  7. './test/lib/**/*.spec@(.js)'
  8. ],
  9. env: {
  10. type: 'node'
  11. },
  12. testFramework: 'mocha'
  13. }
  14. }