-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.ts
36 lines (33 loc) · 861 Bytes
/
jest.config.ts
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
import type { Config } from '@jest/types';
import nextJest from 'next/jest';
const createJestConfig = nextJest();
const config: Config.InitialOptions = {
setupFilesAfterEnv: ['<rootDir>/setupTests.ts'],
moduleDirectories: ['node_modules', '<rootDir>/'],
testEnvironment: 'jest-environment-jsdom',
coverageThreshold: {
global: {
statements: 100,
branches: 100,
functions: 100,
lines: 100,
},
},
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
},
collectCoverageFrom: [
'**/*.{ts,tsx}',
'!**/node_modules/**',
'!**/vendor/**',
'!**/coverage/**',
'!**/__mocks__/**',
'!**/config/**',
'!**/.next/**',
'!**/jest.config.ts',
'!**/tailwind.config.ts',
],
collectCoverage: true,
coverageReporters: ['lcov', 'text', 'html'],
};
export default createJestConfig(config);