2021-04-29 21:17:54 +05:30
|
|
|
const checkEnvironment = require('./config/helpers/check_frontend_integration_env');
|
2020-05-24 23:13:21 +05:30
|
|
|
const baseConfig = require('./jest.config.base');
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
checkEnvironment();
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
module.exports = {
|
2021-04-29 21:17:54 +05:30
|
|
|
...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',
|
|
|
|
},
|
|
|
|
moduleNameMapperEE: {
|
|
|
|
'^ee_else_ce_test_helpers(/.*)$': '<rootDir>/ee/spec/frontend_integration/test_helpers$1',
|
|
|
|
},
|
|
|
|
}),
|
2020-05-24 23:13:21 +05:30
|
|
|
};
|