-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
41 lines (38 loc) · 940 Bytes
/
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
const nextJest = require('next/jest');
const createJestConfig = nextJest({
dir: './'
});
// Add any custom config to be passed to Jest
const customJestConfig = {
roots: ['<rootDir>'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/**/$1'
},
setupFilesAfterEnv: ['<rootDir>/jest.setup.tsx'],
testPathIgnorePatterns: [
'<rootDir>/cypress/',
'<rootDir>[/\\\\](node_modules|.next)[/\\\\]'
],
transformIgnorePatterns: [
'[/\\\\]node_modules[/\\\\].+\\.(ts|tsx)$',
'node_modules/(?!react-query)/'
],
testEnvironment: 'jest-environment-jsdom',
collectCoverage: true,
collectCoverageFrom: [
'./src/**',
'!**/*.d.ts',
'!./.next/**',
'!./src/types/**'
],
coverageThreshold: {
global: {
branches: 0,
functions: 0,
lines: 0,
statements: 0
}
}
};
module.exports = createJestConfig(customJestConfig);