From 842c2326e8d0f1af6c17fd04464d27c0cdc76ded Mon Sep 17 00:00:00 2001 From: Kyle Scheuing Date: Wed, 25 Dec 2024 21:58:57 -0500 Subject: [PATCH] build: fix `just test` not running lib tests --- justfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/justfile b/justfile index a9c544a1..b254d4ad 100644 --- a/justfile +++ b/justfile @@ -8,12 +8,14 @@ build profile='dev': just web/ build '{{profile}}' test: + just lib/ test just gui/ test just cli/ test just android/ test just web/ test test-cov: + just lib/ test-cov just gui/ test-cov just cli/ test-cov just android/ test-cov