Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down