UNPKG

268 BPlain TextView Raw
1#!/usr/bin/env bash
2istanbul report --include=coverage/**/coverage*.json json &&
3istanbul report --include=coverage/**/coverage*.json lcov &&
4
5istanbul check-coverage coverage/coverage-final.json \
6 --statements 90 \
7 --functions 90 \
8 --branches 85 \
9 --lines 90