-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.ts
47 lines (45 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
import path from "path"
const rootDirector = path.resolve(__dirname, ".")
export default {
clearMocks: true,
collectCoverage: true,
coverageDirectory: "coverage",
coverageProvider: "v8",
coverageThreshold: {
global: {
branches: 70,
function: 80,
lines: 80,
statements: 80,
},
},
globals: {},
moduleDirectories: ["node_modules"],
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
moduleNameMapper: {
"@/(.*)": "<rootDir>/src/$1",
"@tests/(.*)": "<rootDir>/__tests__/$1",
},
reporters: [
"default",
[
path.resolve(rootDirector, "node_modules", "jest-html-reporter"),
{
outputPath: "test-report.html",
},
],
],
rootDir: rootDirector,
roots: [rootDirector],
setupFilesAfterEnv: [`${rootDirector}/__tests__/setup.ts`],
testPathIgnorePatterns: [
"/node_modules/",
"<rootDir>/build",
`${rootDirector}/__tests__/fixtures`,
`${rootDirector}/__tests__/setup.ts`,
],
transform: {
"^.+\\.tsx?$": "ts-jest",
},
testRegex: ["(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$"],
}