How to use the kcd-scripts/config.jest.testMatch function in kcd-scripts

To help you get started, we’ve selected a few kcd-scripts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github markerikson / redux-fundamentals-workshop-exercises / jest.config.js View on Github external
...config.testPathIgnorePatterns,
  '/workshop-templates/',
]

config.coveragePathIgnorePatterns = [
  ...config.coveragePathIgnorePatterns,
  '/workshop-templates/',
  'index.js',
]

config.moduleNameMapper = Object.assign({}, config.moduleNameMapper, {
  '^.+\\.css$': '/other/css-mock.js',
})

config.roots = ['.']
config.testMatch = [
    '/src/**/__tests__/**/*.{js,jsx,mjs}',
    '/src/**/?(*.)(spec|test).{js,jsx,mjs}',
]
config.setupFiles = config.setupFiles || []
config.setupFiles.push('/other/setup-tests.js')
config.transform = { '^.+\\.jsx?$': path.resolve("node_modules/kcd-scripts/dist/config/babel-transform")};

module.exports = config