A plugin that integrates jest test results into Jenkins.
$ npm install --save-dev @digitalroute/jest-jenkins-reporter
or
$ yarn add @digitalroute/jest-jenkins-reporter --dev
Configuring package.json
Add jest test result processor, here is jest-jenkins-reporter. If you want to use your self processor, you can replace "jest-jenkins-reporter".
"jest": {
...
...
"testResultsProcessor": "jest-jenkins-reporter"
}
Reporter file config:
"jestSonar": {
"reportPath": "reports",
"reportFile": "report.xml",
"indent": 4
}
reportPath
: Report file generation path.reportFile
: Report file name.indent
: XML file indentation space number.
Test script:
"test-jenkins": "NODE_ENV=test jest --colors"
MIT