mirror of
https://github.com/Feather-2/paper-burner-x.git
synced 2026-09-21 04:37:06 +08:00
问题: - CI 测试步骤使用 --reporters=jest-junit - 但 jest-junit 未在 package.json devDependencies 中 - 导致测试失败:"Could not resolve a module for a custom reporter" 修复: - 移除 --reporters=jest-junit 参数 - 保留 --ci 参数(启用 CI 优化的测试行为) - Jest 使用默认 reporter 即可满足 CI 需求 jest-junit 主要用于生成 JUnit XML 报告,对测试通过非必需。