在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用test
星标63
分支6
更新时间2026年3月23日 20:32
Run tests with optional nextest filter expression
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run tests with optional nextest filter expression
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| 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).