forked from CarlosRangel17/donation-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
58 lines (57 loc) · 1.57 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
const { pathsToModuleNameMapper } = require("ts-jest/utils");
const {
compilerOptions: { paths },
} = require("./tsconfig");
module.exports = {
preset: "ts-jest/presets/js-with-ts",
testEnvironment: "jsdom",
globals: {
// we must specify a custom tsconfig for tests because we need the typescript transform
// to transform jsx into js rather than leaving it jsx such as the next build requires. you
// can see this setting in tsconfig.jest.json -> "jsx": "react"
"ts-jest": {
tsconfig: "tsconfig.jest.json",
},
},
collectCoverage: true,
collectCoverageFrom: [
"src/**/*.{js,jsx,ts,tsx}",
"!**/*.d.ts",
"!**/node_modules/**",
"!**/cypress/**",
"!**/consts/**",
"!**/fonts/**",
"!**/images/**",
"!**/svg/**",
"!**/pages/**",
"!**/utils/logger.ts",
"!**/interfaces/**",
"!src/layout/**",
],
setupFilesAfterEnv: ["<rootDir>testSetup/setupTests.js"],
testPathIgnorePatterns: ["/node_modules/", "/.next/", "/cypress/"],
transform: {
"^.+\\.(ts|tsx)?$": "ts-jest",
"^.+\\.(css|scss)$": "jest-css-modules-transform",
},
transformIgnorePatterns: [
"/node_modules/",
"^.+\\.module\\.(css|sass|scss)$",
"/cypress/",
],
modulePaths: ["<rootDir>"],
moduleDirectories: ["node_modules", "src", "<rootDir>"],
moduleNameMapper: {
...pathsToModuleNameMapper(paths),
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy",
"^@*/(.*)": "./src/^$1",
},
coverageThreshold: {
global: {
branches: 0,
functions: 0,
lines: 0,
statements: 0,
},
},
};