From 238b2a13e5da4096ce1de13532a94e84ae4f6ef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rex?= Date: Tue, 27 May 2025 01:00:34 +0100 Subject: [PATCH] chore: add test capture option --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index e141c63..3b26874 100644 --- a/justfile +++ b/justfile @@ -2,6 +2,7 @@ alias b := build alias ba := buildall alias ball := buildall alias t := test +alias tc := testcapture alias d := doc alias e := expand alias f := fmt @@ -250,6 +251,9 @@ install *ARGS: test *ARGS: cargo t {{ARGS}} +testcapture *ARGS: + cargo t -- --nocapture {{ARGS}} + expand *ARGS: cargo expand {{ARGS}}