-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
40 lines (40 loc) · 1.21 KB
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
module.exports = {
collectCoverageFrom: [
'**/*.{js,jsx,ts,tsx}',
'!**/*.d.ts',
'!**/node_modules/**',
],
moduleNameMapper: {
'^.+\\.module\\.(css|sass|scss)$': 'identity-obj-proxy',
'^.+\\.(css|sass|scss)$': '<rootDir>/__mocks__/styleMock.js',
'^.+\\.(png|jpg|jpeg|gif|webp|avif|ico|bmp|svg)$':
'<rootDir>/__mocks__/fileMock.js',
'^@/components/(.*)$': '<rootDir>/components/$1',
'^@/core/(.*)$': '<rootDir>/core/$1',
'^@/shared/(.*)$': '<rootDir>/shared/$1',
'^@/redux/(.*)$': '<rootDir>/redux/$1',
'^@/constants/(.*)$': '<rootDir>/constants/$1',
'^@/services/(.*)$': '<rootDir>/services/$1',
'^@/pages/(.*)$': '<rootDir>/pages/$1',
},
setupFilesAfterEnv: ['<rootDir>/jest.setup.js', '@testing-library/jest-dom'],
testPathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/.next/',
'!node_modules/',
'/node_modules/(?!(uuid|xxx)/)',
],
transform: {
'^.+\\.(js|jsx|ts|tsx)$': ['babel-jest', { presets: ['next/babel'] }],
},
transformIgnorePatterns: [
'/node_modules/',
'^.+\\.module\\.(css|sass|scss)$',
],
testEnvironment: 'jest-environment-jsdom',
globals: {
'ts-jest': {
isolatedModules: true,
},
},
};