test
星标6
分支5
更新时间2026年1月6日 17:20
Run tests and report results. Use when you need to verify code changes work correctly.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run tests and report results. Use when you need to verify code changes work correctly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | test |
| description | Run tests and report results. Use when you need to verify code changes work correctly. |
Run the test suite and interpret results.
Just say /test to run all tests, or specify options:
/test - Run all tests once/test watch - Run tests in watch mode/test coverage - Run with coverage report/test <pattern> - Run tests matching patternRun the appropriate test command based on user request:
pnpm testpnpm test:watchpnpm test:coveragepnpm test -- --testNamePattern="<pattern>"Parse the output and report:
If tests fail:
If tests pass:
✓ 12 tests passed
✗ 1 test failed
FAILED: packages/groq-lint/src/rules/__tests__/join-in-filter.test.ts
× join-in-filter > invalid > nested join in filter
Expected 2 errors but got 1
Suggestion: The nested dereference case may need adjustment in the walker.