Jest JSON Reporter
Jest reporter that notifies a slack channel via Incoming Webhook integrationSet up
- Set up a Slack Incoming Webhook integration
- Add the Webhook URL to
package.json
underjestSlackReporter
"jestSlackReporter": {
"webhookUrl": "https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXX/XXXXXXXXXXXXXXXXXX"
},
- Set
jest-slack-reporter
as the jesttestResultsProcessor
``` ... "jest": { "testResultsProcessor": "./nodemodules/jest-slack-reporter" }, ...