lnked/react-starter

View on GitHub
wallaby.conf.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = (wallaby) => {

  return {
    files: [
      'src/**/*.{js,jsx,ts,tsx}',
    ],
    tests: [
      'src/**/__tests__/**/*.(ts|tsx|js|jsx)',
      'src/**/?(*.)(spec|test).(ts|tsx|js|jsx)',
    ],
  }

}