20 lines
794 B
JavaScript
20 lines
794 B
JavaScript
const checkEnvironment = require('./config/helpers/check_frontend_integration_env');
|
|
const baseConfig = require('./jest.config.base');
|
|
|
|
checkEnvironment();
|
|
|
|
module.exports = {
|
|
...baseConfig('spec/frontend_integration', {
|
|
moduleNameMapper: {
|
|
'^test_helpers(/.*)$': '<rootDir>/spec/frontend_integration/test_helpers$1',
|
|
'^ee_else_ce_test_helpers(/.*)$': '<rootDir>/spec/frontend_integration/test_helpers$1',
|
|
'^jh_else_ce_test_helpers(/.*)$': '<rootDir>/spec/frontend_integration/test_helpers$1',
|
|
},
|
|
moduleNameMapperEE: {
|
|
'^ee_else_ce_test_helpers(/.*)$': '<rootDir>/ee/spec/frontend_integration/test_helpers$1',
|
|
},
|
|
moduleNameMapperJH: {
|
|
'^jh_else_ce_test_helpers(/.*)$': '<rootDir>/jh/spec/frontend_integration/test_helpers$1',
|
|
},
|
|
}),
|
|
};
|