| 123456789101112131415 |
- module.exports = {
- moduleFileExtensions: ['js', 'json'],
- transform: {
- '^.+\\.js$': 'babel-jest'
- },
- moduleNameMapper: {
- '^@/(.*)$': '<rootDir>/../cfc-frontend/$1'
- },
- testEnvironment: 'node',
- testMatch: [
- '**/unit/**/*.spec.js',
- '**/integration/**/*.spec.js'
- ],
- setupFiles: ['<rootDir>/../cfc-frontend/__tests__/setup.js']
- }
|