-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathjest.config.js
84 lines (83 loc) · 1.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
require("dotenv").config();
module.exports = {
preset: "ts-jest",
collectCoverage: true,
coverageThreshold: {
global: {
branches: 0,
functions: 0,
lines: 0,
statements: 0,
},
},
projects: [
{
displayName: "dom-axios-unit",
testMatch: ["**/*.unit.test.ts"],
testEnvironment: "jsdom",
setupFiles: [
"./test/mockAxios.ts",
"./test/mockFetch.ts",
"./test/setupAxios.ts",
],
},
{
displayName: "dom-fetch-unit",
testMatch: ["**/*.unit.test.ts"],
testEnvironment: "jsdom",
setupFiles: [
"./test/mockAxios.ts",
"./test/mockFetch.ts",
"./test/setupFetch.ts",
],
},
{
displayName: "node-axios-unit",
testMatch: ["**/*.unit.test.ts"],
testEnvironment: "node",
setupFiles: [
"./test/mockAxios.ts",
"./test/mockFetch.ts",
"./test/setupAxios.ts",
],
},
{
displayName: "node-fetch-unit",
testMatch: ["**/*.unit.test.ts"],
testEnvironment: "node",
setupFiles: [
"./test/mockAxios.ts",
"./test/mockFetch.ts",
"./test/setupFetch.ts",
],
},
{
displayName: "dom-axios-int",
testMatch: ["**/*.int.test.ts"],
testEnvironment: "jsdom",
setupFilesAfterEnv: ["./test/setupInt.ts"],
},
{
displayName: "dom-fetch-int",
testMatch: ["**/*.int.test.ts"],
testEnvironment: "jsdom",
setupFilesAfterEnv: [
"./test/setupInt.ts",
"./test/polyfillFetch.ts",
"./test/setupFetch.ts",
],
},
{
displayName: "node-axios-int",
testMatch: ["**/*.int.test.ts"],
testEnvironment: "node",
setupFilesAfterEnv: ["./test/setupInt.ts", "./test/setupAxios.ts"],
},
{
displayName: "node-fetch-int",
testMatch: ["**/*.int.test.ts"],
testEnvironment: "node",
setupFilesAfterEnv: ["./test/setupInt.ts", "./test/setupFetch.ts"],
},
],
};