-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjest.config.js
45 lines (42 loc) · 1.47 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
const nextJest = require('next/jest')
const createJestConfig = nextJest({
// Provide the path to your Next.js app to load next.config.js and .env files in your test environment
dir: './',
})
/** @type {import('jest').Config} */
const jestConfig = {
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
// If using TypeScript with a baseUrl set to the root directory then you need the below for alias' to work
moduleDirectories: ['node_modules', '<rootDir>/'],
// Absolute imports and Module Path Aliases
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
'^~/(.*)$': '<rootDir>/public/$1',
},
collectCoverageFrom: [
'./src/**/*.{js,jsx,ts,tsx}',
'!./src/**/_*.{js,jsx,ts,tsx}',
'!./src/**/*.stories.{js,jsx,ts,tsx}',
'!**/*.d.ts',
'!**/node_modules/**',
'!./src/**/index*.{js,jsx,ts,tsx}',
// For now unable to test page components using metadata API with Jest
// https://github.com/vercel/next.js/issues/47299
'!./src/**/layout*.{js,jsx,ts,tsx}',
'!./src/**/page*.{js,jsx,ts,tsx}',
'!./src/components/analytics/**.{ts,tsx}',
// For now api will skipped from coverage
'!./src/**/route.{ts,tsx}',
],
coverageThreshold: {
global: {
branches: 70,
functions: 70,
lines: 70,
statements: 70,
},
},
testEnvironment: 'jest-environment-jsdom',
}
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async
module.exports = createJestConfig(jestConfig)