Skip to main content
Module

x/ruck/scripts/test.sh

Ruck is an open source buildless React web application framework for Deno.
Go to Latest
File
#! /bin/sh# Runs the Ruck tests and reports code coverage.
# Run the tests with code coverage.deno test \ --unstable \ --allow-env \ --allow-net \ --allow-run \ --allow-read \ --allow-write \ --import-map=importMap.json \ --coverage=.coverage &&# Report code coverage.deno coverage \ --exclude=[\/.]test[\/.] \ .coverage# Clean the code coverage data.rm -rf .coverage