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