diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-20 23:50:22 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-20 23:50:22 +0000 |
commit | 9dc93a4519d9d5d7be48ff274127136236a3adb3 (patch) | |
tree | 70467ae3692a0e35e5ea56bcb803eb512a10bedb /jest.config.base.js | |
parent | 4b0f34b6d759d6299322b3a54453e930c6121ff0 (diff) | |
download | gitlab-ce-9dc93a4519d9d5d7be48ff274127136236a3adb3.tar.gz |
Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43
Diffstat (limited to 'jest.config.base.js')
-rw-r--r-- | jest.config.base.js | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/jest.config.base.js b/jest.config.base.js index 4e9b84d1d34..ef7802ff724 100644 --- a/jest.config.base.js +++ b/jest.config.base.js @@ -1,7 +1,12 @@ const IS_EE = require('./config/helpers/is_ee_env'); const isESLint = require('./config/helpers/is_eslint'); -module.exports = (path) => { +module.exports = (path, options = {}) => { + const { + moduleNameMapper: extModuleNameMapper = {}, + moduleNameMapperEE: extModuleNameMapperEE = {}, + } = options; + const reporters = ['default']; // To have consistent date time parsing both in local and CI environments we set @@ -45,7 +50,8 @@ module.exports = (path) => { 'emojis(/.*).json': '<rootDir>/fixtures/emojis$1.json', '^spec/test_constants$': '<rootDir>/spec/frontend/__helpers__/test_constants', '^jest/(.*)$': '<rootDir>/spec/frontend/$1', - 'test_helpers(/.*)$': '<rootDir>/spec/frontend_integration/test_helpers$1', + '^jquery$': '<rootDir>/node_modules/jquery/dist/jquery.slim.js', + ...extModuleNameMapper, }; const collectCoverageFrom = ['<rootDir>/app/assets/javascripts/**/*.{js,vue}']; @@ -58,6 +64,7 @@ module.exports = (path) => { '^ee_else_ce(/.*)$': rootDirEE, '^ee_jest/(.*)$': '<rootDir>/ee/spec/frontend/$1', [TEST_FIXTURES_PATTERN]: '<rootDir>/tmp/tests/frontend/fixtures-ee$1', + ...extModuleNameMapperEE, }); collectCoverageFrom.push(rootDirEE.replace('$1', '/**/*.{js,vue}')); @@ -79,6 +86,8 @@ module.exports = (path) => { collectCoverageFrom, coverageDirectory: coverageDirectory(), coverageReporters: ['json', 'lcov', 'text-summary', 'clover'], + // We need ignore _worker code coverage since we are manually transforming it + coveragePathIgnorePatterns: ['<rootDir>/node_modules/', '_worker\\.js$'], cacheDirectory: '<rootDir>/tmp/cache/jest', modulePathIgnorePatterns: ['<rootDir>/.yarn-cache/'], reporters, @@ -86,6 +95,7 @@ module.exports = (path) => { restoreMocks: true, transform: { '^.+\\.(gql|graphql)$': 'jest-transform-graphql', + '^.+_worker\\.js$': './spec/frontend/__helpers__/web_worker_transformer.js', '^.+\\.js$': 'babel-jest', '^.+\\.vue$': 'vue-jest', '^.+\\.(md|zip|png)$': 'jest-raw-loader', |