-
Notifications
You must be signed in to change notification settings - Fork 36
/
jest.config.js
60 lines (55 loc) · 2.06 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// You can learn more about each option below in the Jest docs: https://jestjs.io/docs/configuration.
module.exports = {
roots: ['<rootDir>'],
testEnvironment: 'jest-environment-jsdom',
testRegex: '(/__tests__/.*|(\\.|/)(test))\\.[jt]sx?$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'json', 'jsx'],
testPathIgnorePatterns: [
'<rootDir>/.next/',
'<rootDir>[/\\\\](node_modules|.next)[/\\\\]',
'<rootDir>/.jest/test-utils.tsx',
'<rootDir>/__mocks__/*'
],
transformIgnorePatterns: ['/node_modules/', '^.+\\.module\\.(css|sass|scss)$'],
transform: {
// Use babel-jest to transpile tests with the next/babel preset
// https://jestjs.io/docs/configuration#transform-objectstring-pathtotransformer--pathtotransformer-object
'^.+\\.(js|jsx|ts|tsx)$': ['babel-jest', { presets: ['next/babel'] }]
},
watchPlugins: ['jest-watch-typeahead/filename'],
collectCoverage: false,
coverageThreshold: {
global: {
branches: 70,
functions: 70,
lines: 70,
statements: 70
}
},
coverageReporters: ['json', 'html'],
collectCoverageFrom: [
'<rootDir>/src/**/*.*',
'!**/*.d.ts',
'!**/node_modules/**',
'!<rootDir>/src/components/**/*.stories.*',
'!<rootDir>/src/pages/_app.tsx'
],
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
moduleNameMapper: {
// Handle CSS imports (with CSS modules)
// https://jestjs.io/docs/webpack#mocking-css-modules
'^.+\\.module\\.(css|sass|scss)$': 'identity-obj-proxy',
// Handle CSS imports (without CSS modules)
'^.+\\.(css|sass|scss)$': '<rootDir>/__mocks__/styleMock.js',
// Handle image imports
// https://jestjs.io/docs/webpack#handling-static-assets
'^.+\\.(png|jpg|jpeg|gif|webp|avif|ico|bmp|svg)$': `<rootDir>/__mocks__/fileMock.js`,
// Handle module aliases
'^@/components/(.*)$': '<rootDir>/src/components/$1',
'^@/pages/(.*)$': '<rootDir>/src/pages/$1',
'^@/lib(.*)$': '<rootDir>/src/lib$1',
'^@/hooks(.*)$': '<rootDir>/hooks$1',
'^@/mocks(.*)$': '<rootDir>/__mocks__$1',
'^@/tests(.*)$': '<rootDir>/.jest$1'
}
};