summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2019-07-10 13:27:40 +0000
committerClement Ho <clemmakesapps@gmail.com>2019-07-10 13:27:40 +0000
commite787676b3752405cbe4ae75788c6cff53154783d (patch)
tree765c7b06c610c86f5b23038616983eb0f23035cd
parent863930cdfcca9051f0a5902ce3fa0594f3aeac52 (diff)
parenta5d4c5879f67fdada8ed52b6e1476ea9b706c9d1 (diff)
downloadgitlab-ce-e787676b3752405cbe4ae75788c6cff53154783d.tar.gz
Merge branch 'winh-eslint-import-resolver-jest-workaround' into 'master'
Workaround ESLint only resolving paths in test files Closes #64061 See merge request gitlab-org/gitlab-ce!30296
-rw-r--r--jest.config.js11
-rw-r--r--spec/frontend/error_tracking_settings/mock.js2
2 files changed, 11 insertions, 2 deletions
diff --git a/jest.config.js b/jest.config.js
index 84481642250..986b8465eef 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -15,9 +15,18 @@ if (process.env.CI) {
]);
}
+let testMatch = ['<rootDir>/spec/frontend/**/*_spec.js', '<rootDir>/ee/spec/frontend/**/*_spec.js'];
+
+// workaround for eslint-import-resolver-jest only resolving in test files
+// see https://github.com/JoinColony/eslint-import-resolver-jest#note
+const isESLint = module.parent.path.includes('/eslint-import-resolver-jest/');
+if (isESLint) {
+ testMatch = testMatch.map(path => path.replace('_spec.js', ''));
+}
+
// eslint-disable-next-line import/no-commonjs
module.exports = {
- testMatch: ['<rootDir>/spec/frontend/**/*_spec.js', '<rootDir>/ee/spec/frontend/**/*_spec.js'],
+ testMatch,
moduleFileExtensions: ['js', 'json', 'vue'],
moduleNameMapper: {
'^~(/.*)$': '<rootDir>/app/assets/javascripts$1',
diff --git a/spec/frontend/error_tracking_settings/mock.js b/spec/frontend/error_tracking_settings/mock.js
index 42233f82d54..8c5bfd08beb 100644
--- a/spec/frontend/error_tracking_settings/mock.js
+++ b/spec/frontend/error_tracking_settings/mock.js
@@ -1,5 +1,5 @@
import createStore from '~/error_tracking_settings/store';
-import { TEST_HOST } from '../helpers/test_constants';
+import { TEST_HOST } from 'helpers/test_constants';
const defaultStore = createStore();