jest.config.js 357 B

123456789101112131415
  1. module.exports = {
  2. moduleFileExtensions: ['js', 'json'],
  3. transform: {
  4. '^.+\\.js$': 'babel-jest'
  5. },
  6. moduleNameMapper: {
  7. '^@/(.*)$': '<rootDir>/../cfc-frontend/$1'
  8. },
  9. testEnvironment: 'node',
  10. testMatch: [
  11. '**/unit/**/*.spec.js',
  12. '**/integration/**/*.spec.js'
  13. ],
  14. setupFiles: ['<rootDir>/../cfc-frontend/__tests__/setup.js']
  15. }