10404dbb36
同步工作区剩余变更,主要包括: - 营销页面组件与布局持续优化(about/news/services/solutions/team 等) - 详情页四层叙事组件、布局组件、UI 组件调整 - CMS 数据模型、API 路由、权限、工作流、站内通知、媒体管理扩展 - 新增/补充单元测试与 E2E 测试(cms-workflow.spec.ts 等) - ESLint 9 迁移、jest/tsconfig 配置更新、依赖调整 - 新增 ADR、CMS 评估文档、Release Review / Acceptance 报告 - 移除水墨装饰组件与大体积未使用字体文件
112 lines
3.0 KiB
JavaScript
112 lines
3.0 KiB
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'jsdom',
|
|
roots: ['<rootDir>/src'],
|
|
testMatch: ['**/__tests__/**/*.test.{ts,tsx}', '**/*.test.{ts,tsx}'],
|
|
// 仅收集实际可单元测试的目录的覆盖率,排除 pages/API routes/admin 等需集成/E2E 测试的代码
|
|
collectCoverageFrom: [
|
|
'src/components/ui/**/*.{ts,tsx}',
|
|
'src/components/layout/**/*.{ts,tsx}',
|
|
'src/components/seo/**/*.{ts,tsx}',
|
|
'src/components/detail/**/*.{ts,tsx}',
|
|
'src/components/sections/**/*.{ts,tsx}',
|
|
'src/components/content/**/*.{ts,tsx}',
|
|
'src/hooks/**/*.{ts,tsx}',
|
|
'src/lib/**/*.ts',
|
|
'!src/**/*.d.ts',
|
|
'!src/**/*.stories.{ts,tsx}',
|
|
'!src/**/__tests__/**',
|
|
],
|
|
// 覆盖率阈值采用渐进提升策略:基于 Phase 1-5 实测值设定目录级阈值,避免全局平均掩盖核心模块缺口
|
|
// 实测基准 (Phase 5): global(~33% stmts/~32% branches), hooks(~61%/~41%), lib(~45%/~43%),
|
|
// ui(~15%/~21%), layout(~59%/~48%), detail(~32%/~29%), sections(~31%/~35%), content(~29%/~5%),
|
|
// lib/cms(~67%/~83%), lib/constants(~94%/~81%)
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 30,
|
|
functions: 25,
|
|
lines: 32,
|
|
statements: 30,
|
|
},
|
|
'./src/hooks/': {
|
|
branches: 38,
|
|
functions: 60,
|
|
lines: 60,
|
|
statements: 60,
|
|
},
|
|
'./src/lib/': {
|
|
branches: 40,
|
|
functions: 45,
|
|
lines: 42,
|
|
statements: 42,
|
|
},
|
|
'./src/components/ui/': {
|
|
branches: 18,
|
|
functions: 10,
|
|
lines: 15,
|
|
statements: 14,
|
|
},
|
|
'./src/components/layout/': {
|
|
branches: 45,
|
|
functions: 35,
|
|
lines: 60,
|
|
statements: 55,
|
|
},
|
|
'./src/components/detail/': {
|
|
branches: 25,
|
|
functions: 22,
|
|
lines: 30,
|
|
statements: 30,
|
|
},
|
|
'./src/components/sections/': {
|
|
branches: 30,
|
|
functions: 18,
|
|
lines: 30,
|
|
statements: 30,
|
|
},
|
|
'./src/components/content/': {
|
|
branches: 4,
|
|
functions: 4,
|
|
lines: 25,
|
|
statements: 25,
|
|
},
|
|
'./src/components/seo/': {
|
|
branches: 0,
|
|
functions: 18,
|
|
lines: 40,
|
|
statements: 40,
|
|
},
|
|
'./src/lib/cms/': {
|
|
branches: 80,
|
|
functions: 75,
|
|
lines: 60,
|
|
statements: 65,
|
|
},
|
|
'./src/lib/constants/': {
|
|
branches: 88,
|
|
functions: 45,
|
|
lines: 85,
|
|
statements: 85,
|
|
},
|
|
},
|
|
coverageProvider: 'v8',
|
|
coverageReporters: ['text', 'lcov', 'html', 'json'],
|
|
coverageDirectory: '<rootDir>/coverage',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
moduleNameMapper: {
|
|
'^@/(.*)$': '<rootDir>/src/$1',
|
|
},
|
|
transform: {
|
|
// ts-jest 需要明确指定 jsx: 'react-jsx',因为项目 tsconfig 使用 'preserve'
|
|
// 由后续 SWC/Babel 处理,但 Jest 环境下没有这些工具链
|
|
'^.+\\.(ts|tsx)$': ['ts-jest', { tsconfig: { jsx: 'react-jsx' } }],
|
|
},
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(nanoid|next-auth|@auth|@aws-sdk)/)',
|
|
],
|
|
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
|
|
testTimeout: 10000,
|
|
verbose: true,
|
|
maxWorkers: '50%',
|
|
};
|