c8: report: - npx c8 report --reporter=text check: - npx c8 check-coverage --branches 80 --functions 80 --lines 80 --statements 80 coverage_report_folder: coverage vitest: report: - npx vitest --coverage --run check: - npx vitest --run --coverage --coverage.thresholds.lines=80 --coverage.thresholds.functions=80 --coverage.thresholds.branches=80 --coverage.thresholds.statements=80 coverage_report_folder: coverage nyc: report: - npx nyc report check: - npx nyc check-coverage --branches 80 --functions 80 --lines 80 --statements 80 coverage_report_folder: .nyc_output jest: report: - npx istanbul report text check: - npx istanbul check-coverage --statements 80 --functions 80 --branches 80 --lines 80 coverage_report_folder: coverage istanbul: report: - npx istanbul report text check: - npx istanbul check-coverage --statements 80 --functions 80 --branches 80 --lines 80 coverage_report_folder: coverage tap: report: - npx tap report --coverage-report=text --show-full-coverage check: - "" coverage_report_folder: .tap/coverage karma: report: - exit 2