Skip to main content
Module

x/cav/test/coverage.sh

A server framework for Deno
Go to Latest
File
#!/usr/bin/env bashcd "$(dirname "$0")"set -e
# https://deno.land/manual/testing/coveragerm -rf cov_profile.lcov cov_profile cov_htmldeno test --allow-net --coverage=cov_profile $@deno coverage --lcov cov_profile > cov_profile.lcovgenhtml -o cov_html cov_profile.lcov # macOS: `brew install lcov`open cov_html/index.html