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();
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
console.log(`
|
|
|
|
PSA: Running into unexpected and/or strange frontend integration test errors?
|
|
|
|
Please help improve our error logging by following the instructions on this issue:
|
|
|
|
|
|
|
|
https://gitlab.com/gitlab-org/gitlab/-/issues/345513
|
|
|
|
`);
|
|
|
|
|
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
|
|
|
}),
|
2022-01-26 12:08:38 +05:30
|
|
|
timers: 'real',
|
2022-11-25 23:54:43 +05:30
|
|
|
testTimeout: process.env.CI ? 20000 : 7000,
|
2020-05-24 23:13:21 +05:30
|
|
|
};
|