jest-mattermost
v1.0.1
Published
this is a package send a notification to mattermost as soon as you run your tests
Downloads
1
Readme
Installation
npm install jest-html-reporters --save-dev
Usage
Configure Jest to process the test results by adding the following entry to the Jest config (jest.config.json):
"jest": {
...,
"reporters": [
"default",
["jest-mattermost-reporter", {
"url": "http://{your-mattermost-site}/hooks/xxx-generatedkey-xxx",
}]
],
...
}