Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-04 03:07:28 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-04 03:07:28 +0300
commit04b866f03b967470e20d5dd106fd493bebe40909 (patch)
treef118a6549de91f7f59b03ae180ded283349a24dc /jest.config.js
parentcd353f0da2c1c9a6cdfe0a92f5f3236971ffaf9f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/jest.config.js b/jest.config.js
index 96a62b18d8f..3f3e1abbf0c 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -9,6 +9,10 @@ if (IS_JH && fs.existsSync('./jh/jest.config.js')) {
module.exports = require('./jh/jest.config');
} else {
module.exports = {
- ...baseConfig('spec/frontend'),
+ ...baseConfig('spec/frontend', {
+ roots: ['<rootDir>/spec/frontend'],
+ rootsEE: ['<rootDir>/ee/spec/frontend'],
+ rootsJH: ['<rootDir>/jh/spec/frontend'],
+ }),
};
}