1.0.4 • Published 3 years ago

jest-slack-reporter-ulms v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Jest Slack Reporter

Jest reporter that notifies a Slack channel via Incoming Webhook integration

Set up

  1. Set up a Slack Incoming Webhook integration
  2. Add the Webhook URL to your env variables (without https://)
WEBHOOK_URL=hooks.slack.com/services/X...X/X...X/X...X yarn test
  1. Set jest-slack-reporter-ulms as the jest testResultsProcessor in jest.config.js
...
"jest": {
  "testResultsProcessor": "./node_modules/jest-slack-reporter-ulms"
},
...