Giter VIP home page Giter VIP logo

istanbul-slack-notify's Introduction

istanbul-slack-notify

Build Status Coverage Status

Sends istanbul / jest coverage summary and git build details to Slack using a pass/fail threshold for project coverage.

screenshot

If SLACK_WEBHOOK is not provided it prints total coverage info to console instead

screenshot console

Table of Contents

  1. Installation
  2. Setup
  3. Examples
    1. Via npm task
    2. Via cli
  4. Contributing

Installation

npm i --save-dev istanbul-slack-notify

Setup

Do not share incoming webhook URLs in public code repositories.

You will need to configure a webhook for your Slack team: https://api.slack.com/incoming-webhooks

You must define SLACK_WEBHOOK as an environment variable.

You can override other default settings in your package.json by adding the following section:

  "coverage": {
    "threshold": 100,
    "projectName": "Istanbul Slack Notify",
    "repositoryUrl": "https://github.com/mattyboy/istanbul-slack-notify",
    "coverageFiles": ["coverage/coverage-final.json"],
    "username": "coverage-bot",
    "channel": "#random",
    "haltOnFailure": true
  }

Istanbul / Jest coverage report for your project must be generated first.

Examples

Via npm task

Passing SLACK_WEBHOOK at runtime

Define a couple of npm tasks in package.json, assuming you only want slack notify from you CI server.

"test": "./node_modules/.bin/jest --coverage",
"test-ci": "npm test && ./node_modules/.bin/istanbul-slack-notify",

Then run tests on your CI server as follows.

export SLACK_WEBHOOK=https://hooks.slack.com/xxxxx
SLACK_WEBHOOK=$SLACK_WEBHOOK npm run test-ci

Note: If you don't set the SLACK_WEBHOOK it will print totals coverage to console instead

Defining SLACK_WEBHOOK in package.json

While you can do this be sure it isn't in a public repo as you will expose your slack webhook url.

"test": "./node_modules/.bin/jest --coverage && ./node_modules/.bin/istanbul-slack-notify",
"test-ci": "npm test && SLACK_WEBHOOK=https://hooks.slack.com/xxxxx ./node_modules/.bin/istanbul-slack-notify",

Via cli

export SLACK_WEBHOOK=https://hooks.slack.com/xxxxx
SLACK_WEBHOOK=$SLACK_WEBHOOK ./node_modules/.bin/istanbul-slack-notify

Contributing

If you have any feedback or suggestions please let me know. We use this package as part of our CI process and are open to changes that would be valuable to us and others.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.