-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.ts
34 lines (31 loc) · 931 Bytes
/
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
/* eslint-disable max-len */
import type { JestConfigWithTsJest } from "ts-jest";
/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/configuration
*/
const config: JestConfigWithTsJest = {
clearMocks: true,
coverageProvider: "v8",
globalSetup: "<rootDir>/jest/global-setup.ts",
moduleDirectories: ["node_modules", __dirname],
moduleNameMapper: {
"^jest/(.*)": "<rootDir>/jest/$1",
},
modulePathIgnorePatterns: ["node_modules_linux"],
preset: "ts-jest",
reporters: ["default", "github-actions"],
setupFiles: ["<rootDir>/jest/setup.ts"],
testEnvironment: "jsdom",
transform: {
// '^.+\\.[tj]sx?$' to process js/ts with `ts-jest`
// '^.+\\.m?[tj]sx?$' to process js/ts/mjs/mts with `ts-jest`
"^.+\\.tsx?$": [
"ts-jest",
{
tsconfig: "tsconfig.jest.json",
},
],
},
};
export default config;