olavoparno / istanbul-badges-readme

Creates and updates README testing coverage badges with your json-summary

Home Page:https://www.npmjs.com/package/istanbul-badges-readme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Istanbul Badges Readme

Creates README badges from istanbul coverage report

Statements Branches Functions Lines
Statements Branches Functions Lines

Table of Contents

Running example

Example


Requirements

  • First, of course, you must have a test runner such as Jest and Mocha;
  • You must have json-summary as a coverageReporter in your tests configuration;
  • For example, if you are using Jest, configuration should either be within package.json or inside your jest config file i.e. jest.config.js or jestconfig.json as written below:
  "coverageReporters": ["json-summary"]

Installation

  • Install the library in your project as a devDependency:
  npm i -D istanbul-badges-readme
  • Add at least one of the below coverage hashes in your README file:

    • ![Statements](#statements#)
    • ![Branches](#branches#)
    • ![Functions](#functions#)
    • ![Lines](#lines#)
  • A simple example of all hashes being used in a table fashion markup:

| Statements                  | Branches                | Functions                 | Lines             |
| --------------------------- | ----------------------- | ------------------------- | ----------------- |
| ![Statements](#statements#) | ![Branches](#branches#) | ![Functions](#functions#) | ![Lines](#lines#) |

Simple Usage

  • Simply run it from the CLI as follows:
  npx istanbul-badges-readme
  • Or add it to your package.json scripts as follows:
"scripts": {
  "make-badges": "istanbul-badges-readme",
}

Advanced Usage Arguments

Coverage Directory

  • Custom coverage directory? Use --coverageDir argument:
  npm run istanbul-badges-readme --coverageDir="./my-custom-coverage-directory"

Readme Directory

  • Custom readme directory? Use --readmeDir argument:
  npm run istanbul-badges-readme --readmeDir="./my-custom-readme-directory"

Silent

  • Want it without logging? Try silent mode with --silent argument:
  npm run istanbul-badges-readme --silent

Functions and Branches Labels

  • You may also create custom labeling for the badges using the corresponding hash and Label e.g. branchesLabel --branchesLabel='Branches are troublesome!':
  npm run istanbul-badges-readme --functionsLabel='Mis funciones!' --branchesLabel='Branches are troublesome!'

Badge Style

  • You can also change the badge styling, according to shields.io's own style reference. See more examples here.
  npm run istanbul-badges-readme --style="for-the-badges"

Badge Logo

  • There is an option to use a logo within the badge, as described on shields.io's own documentation which uses all icons available at simple-icons.
  npm run istanbul-badges-readme --logo="jest"

Exit code

  • To exit with 1 code on validation errors (eg.: README doesn't exist, or coverage directory doesn't exist) or on editing errors (eg.: cannot write to README due to lack of permissions). The default exit code is 0. Set a different one by using --exitCode argument.
  npm run istanbul-badges-readme --exitCode=1

Usage as a part of your githooks

  • If you want to have this run on the pre-commit hook and update the commit in place, just install husky and add the pre-commit script to your package.json.
  1. Install Husky.
  npm install -D husky
  1. Add your pre-commit script:
  "husky": {
    "hooks": {
      "pre-commit": "npm run test && istanbul-badges-readme && git add 'README.md'"
    }
  }
  1. Git Commit and Push. Just use your workflow as usual. If your tests fail, no commit. If they pass, update the README.md and add the file to the commit. Nice!

Usage as a part of your CI

You may want to have peace of mind that contributors have run istanbul-badges-readme locally by performing a simple check in your CI.

The --ci argument will throw an error, code 0 by default unless exitCode is specified, thus not updating anything regarding coverage, if the badges generated do not match what is already in the README.md.

You can add this to your package.json as follows for exitCode 0:

"scripts": {
  "make-badges": "istanbul-badges-readme",
  "make-badges:ci": "npm run make-badges -- --ci",
}

Also if you wish a different exitCode:

"scripts": {
  "make-badges": "istanbul-badges-readme",
  "make-badges:ci": "npm run make-badges -- --ci --exitCode=1",
}

This is a useful addition/alternative to the githooks approach for some use cases such as larger codebases, slow computers etc, where it isn't always feasible to run all the tests and produce coverage on each commit.

Custom Badge Styles

  • DEFAULT STYLE Square style='square': Statements

  • Square flat style='square-flat': Statements

  • Plastic style='plastic': Statements

  • For the badge style='for-the-badge': Statements

See running examples

Examples folder

βœ”οΈ Tip

We use this in our pull request GitHub Action, check out a recent pull request to see it in action!


Contributors

Thanks goes to these wonderful people (emoji key):

Olavo Parno
Olavo Parno

πŸ€” πŸ’» ⚠️
nothingismagick
nothingismagick

πŸ€” πŸ› πŸ–‹
Dave Fisher
Dave Fisher

πŸ›
Martin Zagora
Martin Zagora

πŸ€” πŸ›
Victor Miti
Victor Miti

πŸ›
Stefan Huber
Stefan Huber

πŸ’¬ πŸ“–
Guilherme Ventura
Guilherme Ventura

πŸ€” πŸ’» πŸ›
Matt Hodges
Matt Hodges

πŸ›
Antoine Vendeville
Antoine Vendeville

πŸ›
Oleg Dutchenko
Oleg Dutchenko

πŸ›
Thomas
Thomas

πŸ€”
Troy Poulter
Troy Poulter

πŸ’» πŸ€” ⚠️
LiaoLiao
LiaoLiao

πŸ€”
David Mimnagh
David Mimnagh

πŸ€”
Micael Levi L. Cavalcante
Micael Levi L. Cavalcante

πŸ€” πŸ’» πŸ›
Richard Michael Coo
Richard Michael Coo

πŸ›
LetΓ­cia Vidal
LetΓ­cia Vidal

πŸ›
Yusuf
Yusuf

πŸ“–
supunTE
supunTE

πŸ“–

This project follows the all-contributors specification. Contributions of any kind welcome!


License

Istanbul Badges Readme is MIT licensed.

About

Creates and updates README testing coverage badges with your json-summary

https://www.npmjs.com/package/istanbul-badges-readme

License:MIT License


Languages

Language:TypeScript 96.4%Language:JavaScript 3.2%Language:Shell 0.5%