From 3a76092c70561e5b42eeeeff2e50e538d40102f8 Mon Sep 17 00:00:00 2001 From: jfmcdowell <206422+jfmcdowell@users.noreply.github.com> Date: Sun, 18 Jan 2026 11:23:13 -0500 Subject: [PATCH] fix(justfile): remove errant `run` argument from test commands The `test` and `test-crate` recipes incorrectly used `cargo test run` instead of `cargo test`, causing most tests to be filtered out. --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 872ad5c1d4ac..e7dd124d66a9 100644 --- a/justfile +++ b/justfile @@ -202,11 +202,11 @@ _touch file: # Run tests of all crates test: - cargo test run --no-fail-fast + cargo test --no-fail-fast # Run tests for the crate passed as argument e.g. just test-create biome_cli test-crate name: - cargo test run -p {{name}} --no-fail-fast + cargo test -p {{name}} --no-fail-fast # Run doc tests test-doc: