-
Notifications
You must be signed in to change notification settings - Fork 23
/
jest.config.js
45 lines (34 loc) · 1.1 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({
dir: "./",
});
/** @type {import('jest').Config} */
const config = {
// automatically clear mock calls and instances between every test
clearMocks: true,
// whether the coverage information should be collected while executing the test
collectCoverage: true,
// directory where Jest should output its coverage files
coverageDirectory: "coverage",
coverageProvider: "v8",
globals: {
"ts-jest": {
tsconfig: "<rootDir>/tsconfig.test.json",
},
},
moduleNameMapper: {
// handle module aliases
"^@/components/(.*)$": "<rootDir>/components/$1",
},
// add more setup options before each test is run
setupFilesAfterEnv: ["<rootDir>/jest.setup.js"],
testEnvironment: "jest-environment-jsdom",
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/.next/"],
transformIgnorePatterns: [
"/node_modules/",
"^.+\\.module\\.(css|sass|scss)$",
],
verbose: true,
};
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async
module.exports = createJestConfig(config);