From b7416c7434d30aade3adea1a4402d4eaa08ba960 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 17 May 2024 18:49:00 +0100 Subject: [PATCH] chore(justfile): add coverage recipe --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index e9556ab..4b15983 100644 --- a/justfile +++ b/justfile @@ -16,3 +16,7 @@ start-ngrok: else ngrok http --domain=${NGROK_DOMAIN} 8080 fi + +coverage: + cargo tarpaulin --lib --out html + open tarpaulin-report.html