with one click
test
Run tests with optional nextest filter expression
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run tests with optional nextest filter expression
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | test |
| description | Run tests with optional nextest filter expression |
Run project tests using cargo-nextest.
If $ARGUMENTS is provided, pass it as a nextest filter expression:
just test -E '$ARGUMENTS'
If no arguments are provided, run all tests:
just test
Common filter patterns:
test(test_name) — match test by nametest(~keyword) — fuzzy matchpackage(mmdflux) — only the main cratetest(dagre_parity) — layout parity tests against dagre.jsTo run a specific test file instead of a filter expression, use:
just test-file <name>
where <name> is the filename without extension (e.g., just test-file integration_full).