mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
21 lines
794 B
JavaScript
21 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',
|
|
},
|
|
}),
|
|
};
|