chore: add test capture option

This commit is contained in:
Jesús Pérex 2025-05-27 01:00:34 +01:00
parent 852df37ffc
commit 238b2a13e5

View File

@ -2,6 +2,7 @@ alias b := build
alias ba := buildall alias ba := buildall
alias ball := buildall alias ball := buildall
alias t := test alias t := test
alias tc := testcapture
alias d := doc alias d := doc
alias e := expand alias e := expand
alias f := fmt alias f := fmt
@ -250,6 +251,9 @@ install *ARGS:
test *ARGS: test *ARGS:
cargo t {{ARGS}} cargo t {{ARGS}}
testcapture *ARGS:
cargo t -- --nocapture {{ARGS}}
expand *ARGS: expand *ARGS:
cargo expand {{ARGS}} cargo expand {{ARGS}}