forked from hack-rpi/HackRPI-Website-2024
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjest.config.js
101 lines (96 loc) · 3.42 KB
/
jest.config.js
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/** @type {import('jest').Config} */
const config = {
testEnvironment: "jsdom",
testPathIgnorePatterns: [
"<rootDir>/node_modules/",
"<rootDir>/.next/",
"<rootDir>/amplify/",
"<rootDir>/__tests__/test-utils.tsx",
"<rootDir>/e2e/", // Explicitly exclude all Playwright E2E tests to avoid conflicts
],
// Add specific test match patterns to only include actual test files
testMatch: ["**/__tests__/**/*test.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
// Switch to V8 coverage provider for better performance and compatibility
coverageProvider: "v8",
moduleNameMapper: {
// Handle module aliases
"^@/(.*)$": "<rootDir>/$1",
// Handle CSS imports (with CSS modules)
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy",
// Handle CSS imports (without CSS modules)
"^.+\\.(css|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
// Target specific directories and file patterns first for better precision
"^@/public/(.+)\\.(jpg|jpeg|png|gif|webp|avif|svg)$": "<rootDir>/__mocks__/fileMock.js",
"^@/assets/(.+)\\.(jpg|jpeg|png|gif|webp|avif|svg)$": "<rootDir>/__mocks__/fileMock.js",
"^@/images/(.+)\\.(jpg|jpeg|png|gif|webp|avif|svg)$": "<rootDir>/__mocks__/fileMock.js",
// Generic fallback for any other image imports
"^.+\\.(jpg|jpeg|png|gif|webp|avif|svg)$": "<rootDir>/__mocks__/fileMock.js",
},
transform: {
// Use babel-jest for JS/JSX/TS/TSX files
"^.+\\.(js|jsx|ts|tsx)$": ["babel-jest"],
},
transformIgnorePatterns: ["/node_modules/(?!(@aws-amplify|aws-amplify|@2toad/profanity)/)"],
setupFilesAfterEnv: ["<rootDir>/jest.setup.js"],
collectCoverageFrom: [
"**/*.{js,jsx,ts,tsx}",
"!**/*.d.ts",
"!**/node_modules/**",
"!**/.next/**",
"!**/coverage/**",
"!**/*.config.js",
"!**/amplify/**",
],
testTimeout: 10000, // Increase test timeout to 10 seconds
// Enable fake timers globally for more consistent behavior
fakeTimers: {
enableGlobally: true,
// Use modern timers implementation
legacyFakeTimers: false,
// Set a realistic default timer delay that works with React
timerLimit: 5000,
},
// Add watch plugins for better developer experience
watchPlugins: ["jest-watch-typeahead/filename", "jest-watch-typeahead/testname"],
// Performance optimizations
maxWorkers: "50%", // Use half the available CPU cores for parallel testing
bail: 5, // Stop running tests after 5 failures
cache: true, // Enable caching
// Set a higher default timeout for all tests
testTimeout: 15000,
// Add additional reporters for better output
reporters: ["default", ["jest-junit", { outputDirectory: "./coverage", outputName: "junit.xml" }]],
// Add a CI mode detector
ci: process.env.CI === "true",
// Enable verbose output for easier debugging
verbose: true,
// Specify global "threshold" for coverage report
coverageThreshold: {
global: {
statements: 20, // Start with achievable target based on current 22.79%
branches: 15, // Start with achievable target based on current 20.05%
functions: 10, // Start with achievable target based on current 14.65%
lines: 20, // Start with achievable target based on current 23.59%
},
// Add specific thresholds for critical files
"./app/actions.ts": {
statements: 80,
branches: 70,
functions: 80,
lines: 80,
},
"./utils/timer.ts": {
statements: 90,
branches: 80,
functions: 90,
lines: 90,
},
"./utils/schedule.ts": {
statements: 90,
branches: 80,
functions: 90,
lines: 90,
},
},
};
module.exports = config;