UNPKG

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