A Jest reporter that generates a test report compatible with Atlassian Bamboo's Mocha Test Parser, enabling Bamboo CI to parse Jest results. Version 1.0.0 is the current stable release. The package is a fork of eslint-bamboo-formatter and outputs a JSON file (default jest.json) that Bamboo can consume. It has no dependencies and is intended for use in Bamboo CI pipelines. Emits no external side effects beyond writing the report file. Does not support Jest's reporters configuration; uses the older testResultsProcessor option.
npm install jest-bamboo-formatterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to configure Jest to use jest-bamboo-formatter as the test results processor.
Set JEST_FILE environment variable to a unique path, e.g., 'JEST_FILE=test-results.json'.
Do not specify reporters in Jest config if using testResultsProcessor.
Run Jest from the directory where you want the report to appear or provide an absolute path via JEST_FILE.
Ensure your Bamboo job uses the 'Mocha Test Parser' not the JUnit parser.
Run 'npm install jest-bamboo-formatter' and verify node_modules path.
Set testResultsProcessor to a single string.
Check Jest version compatibility (Jest >=25) and ensure there are no syntax errors in test files.
No dependency data recorded yet.