-
Notifications
You must be signed in to change notification settings - Fork 25
/
jest.config.ts
67 lines (56 loc) · 1.76 KB
/
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
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
import type { Config } from 'jest';
const config: Config = {
// Automatically clear mock calls, instances, contexts and results before every test
clearMocks: true,
// Indicates whether the coverage information should be collected while executing the test
collectCoverage: true,
// The directory where Jest should output its coverage files
coverageDirectory: 'coverage',
// Indicates which provider should be used to instrument code for coverage
coverageProvider: 'babel',
// A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1', // Handle ESM imports
},
// A preset that is used as a base for Jest's configuration
preset: 'ts-jest',
// Run tests from one or more projects
projects: [
{
displayName: 'jsdom',
testEnvironment: 'jsdom',
testMatch: ['**/__tests__/**/*.spec.tsx'],
transform: {
'^.+\\.tsx?$': 'ts-jest', // Use ts-jest for TypeScript files
},
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1',
},
},
{
displayName: 'node',
testEnvironment: 'node',
testMatch: ['**/__tests__/**/*.spec.ts'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1',
},
setupFiles: ['<rootDir>/jest.setup.ts'],
},
],
// Indicates whether each individual test should be reported during the run
verbose: true,
// Optionally, add these for better TypeScript support
extensionsToTreatAsEsm: ['.ts'],
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
};
export default config;