Skip to content
Snippets Groups Projects
Unverified Commit 96bb9791 authored by Johannes Feichtner's avatar Johannes Feichtner Committed by GitHub
Browse files

chore: exclude __mocks__ in jest config due to jest-haste-map warning (#18482)

parent b544d5ca
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,11 @@ const config: JestConfig = {
},
],
},
modulePathIgnorePatterns: ['<rootDir>/dist/', '/__fixtures__/'],
modulePathIgnorePatterns: [
'<rootDir>/dist/',
'/__fixtures__/',
'/__mocks__/',
],
reporters: ci ? ['default', 'github-actions'] : ['default'],
setupFilesAfterEnv: [
'jest-extended/all',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment