-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.mjs
More file actions
37 lines (37 loc) · 1.08 KB
/
jest.config.mjs
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
/** @type {import("jest").Config} */
export default {
preset: "ts-jest",
testEnvironment: "node",
projects: [
{
displayName: "unit",
preset: "ts-jest",
testEnvironment: "node",
moduleNameMapper: {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
transform: {
"^.+\\.(ts|tsx|js|jsx)$": ["ts-jest", { tsconfig: { allowJs: true } }]
},
transformIgnorePatterns: ["/node_modules/(?!(msw|@mswjs|until-async)/)"],
roots: ["<rootDir>/tests/unit"],
setupFilesAfterEnv: ["<rootDir>/tests/setup.ts"]
},
{
displayName: "wire",
preset: "ts-jest",
testEnvironment: "node",
moduleNameMapper: {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
transform: {
"^.+\\.(ts|tsx|js|jsx)$": ["ts-jest", { tsconfig: { allowJs: true } }]
},
transformIgnorePatterns: ["/node_modules/(?!(msw|@mswjs|until-async)/)"],
roots: ["<rootDir>/tests/wire"],
setupFilesAfterEnv: ["<rootDir>/tests/setup.ts", "<rootDir>/tests/mock-server/setup.ts"]
}
],
workerThreads: false,
passWithNoTests: true
};