@testream/jest-reporter
v1.0.2
Published
Jest plugin to upload test results to Testream
Maintainers
Readme
@testream/jest-reporter
Bridges Jest test runs from your codebase into Jira with Testream. Once configured, it uploads results automatically.
Quick Start
npm install --save-dev @testream/jest-reporter// jest.config.js
module.exports = {
reporters: [
'default',
[
'@testream/jest-reporter',
{
apiKey: process.env.TESTREAM_API_KEY,
uploadEnabled: true,
},
],
],
};Need more configuration options? See the full guide at https://docs.testream.app/reporters/jest.
