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}}