@planningcenter/minimal-jest-reporter
v1.1.1
Published
Minimal Jest reporter for AI-friendly test output
Keywords
Readme
@planningcenter/minimal-jest-reporter
A minimal Jest reporter designed for clean, AI-friendly test output.
Instead of Jest's default verbose output, this reporter prints only what matters: a pass count on success, or the failing test names and messages on failure.
Installation
npm install --save-dev @planningcenter/minimal-jest-reporterUsage
In your Jest config:
// jest.config.js
module.exports = {
reporters: ["@planningcenter/minimal-jest-reporter"],
}Output
All tests pass:
5 tests passedWith coverage:
5 tests passed
statements 94.1% branches 87.5% functions 100% lines 94.1%Tests fail:
✗ it should return the correct value
Expected: true
Received: falseRequirements
- Jest >= 27
