一键导入
test-execution
Run unit and integration tests, generate coverage reports, and view results. Use to validate code changes before committing or merging.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run unit and integration tests, generate coverage reports, and view results. Use to validate code changes before committing or merging.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Integration between Git workflows and Jira issues. Generates branch names from issues, validates commit messages, and provides PR context from Jira specifications.
AI-powered sprint planning, velocity analysis, and capacity forecasting. Use for planning sprints, predicting outcomes, and providing agile recommendations based on historical data.
Git repository operations including branching, committing, pushing, and viewing history. Use for version control tasks. Destructive operations require explicit approval.
Read data from Jira including issues, comments, sprints, and execute JQL queries. Use when you need to fetch or search Jira data without making changes.
Create and update Jira issues, add comments, transition statuses, and manage sprints. Use when you need to make changes to Jira data. Supports dry-run mode for validation.
Coordinate multi-step workflows across skills with execution plans, state tracking, and rollback support. Use when tasks require multiple coordinated operations.
| name | test-execution |
| description | Run unit and integration tests, generate coverage reports, and view results. Use to validate code changes before committing or merging. |
| license | MIT |
| compatibility | Requires Node.js test runner (vitest, jest) or project-specific test framework |
| metadata | {"author":"ximplicity","version":"1.0","category":"testing"} |
Run and manage automated tests.
| Type | Speed | Dependencies | When to Run |
|---|---|---|---|
| Unit | Fast | Mocked | Every commit |
| Integration | Medium | Test fixtures | Before merge |
| E2E | Slow | Full stack | Before release |
# Run all tests
npm test
# Run with coverage
npm run test:coverage
# Run specific file
npm test -- path/to/test.ts
# Run by pattern
npm test -- --grep "auth"
For detailed test patterns, see TEST-PATTERNS.md.
For coverage configuration, see COVERAGE-GUIDE.md.
{
"passed": 42,
"failed": 0,
"skipped": 2,
"duration": 1234,
"coverage": {
"lines": 85.5,
"branches": 80.2
}
}
Run all unit tests
Run tests matching "auth"
Run tests with coverage report
Show results of last test run