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.