darthtrevino/savey-wavey

View on GitHub
wallaby.conf.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function getWallabyConfiguration() {
  return {
    files: [
      'src/**/*.ts',
      'test/**/*.json'
    ],
    tests: [
      'test/**/*.spec.ts'
    ],
    env: {
      type: 'node',
      runer: 'node'
    }
  };
};