AgentSkillsCN

test

运行所有项目测试,包括 Python pytest 和 JavaScript 测试,同时报告测试结果与失败情况。

SKILL.md
--- frontmatter
name: test
description: Run all project tests including Python pytest and JavaScript tests. Reports test results and failures.
user-invocable: true
allowed-tools: Bash, Read
bash
# Python
cd server && python -m pytest tests/ -v --tb=short

# JavaScript
cd client && npm test