debian-mirror-gitlab/jest.config.integration.js

21 lines
794 B
JavaScript
Raw Normal View History

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',
2021-11-11 11:23:49 +05:30
'^jh_else_ce_test_helpers(/.*)$': '<rootDir>/spec/frontend_integration/test_helpers$1',
2021-04-29 21:17:54 +05:30
},
moduleNameMapperEE: {
'^ee_else_ce_test_helpers(/.*)$': '<rootDir>/ee/spec/frontend_integration/test_helpers$1',
},
2021-11-11 11:23:49 +05:30
moduleNameMapperJH: {
'^jh_else_ce_test_helpers(/.*)$': '<rootDir>/jh/spec/frontend_integration/test_helpers$1',
},
2021-04-29 21:17:54 +05:30
}),
2020-05-24 23:13:21 +05:30
};