forked from pointblank-club/PB_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.ts
More file actions
40 lines (31 loc) · 774 Bytes
/
jest.config.ts
File metadata and controls
40 lines (31 loc) · 774 Bytes
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
import type { Config } from "jest";
import nextJest from "next/jest.js";
const createJestConfig = nextJest({
dir: "./",
});
const customJestConfig: Config = {
clearMocks: true,
collectCoverage: true,
collectCoverageFrom: [
"app/**/api/**/*.{ts,tsx}",
"!app/**/api/**/*.d.ts",
],
coverageDirectory: "coverage",
coverageProvider: "v8",
coverageReporters: ["text", "lcov"],
coveragePathIgnorePatterns: [
"/node_modules/",
"/.next/",
"/coverage/",
],
moduleNameMapper: {
"^@/(.*)$": "<rootDir>/$1",
},
setupFilesAfterEnv: ["<rootDir>/jest.setup.ts"],
testEnvironment: "node",
testPathIgnorePatterns: [
"<rootDir>/.next/",
"<rootDir>/node_modules/",
],
};
export default createJestConfig(customJestConfig);