Run unit tests and test suites for various frameworks locally on desktop
Scanned 9/12/2026
Install to Claude Code
npx -y skills add fisker086/AIOps --skill test_runner --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Test Runner?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/fisker086-test-runner)More formats (shields.io, HTML) on the badges page.
---
name: test-runner
description: Run unit tests and test suites for various frameworks locally on desktop
activation_keywords: [test, run, unit, suite, jest, pytest, go test, cargo test]
execution_mode: client
---
# Test Runner Skill
在 **AI TaskMeta 桌面端** 本地运行测试命令。
## 支持的框架
| 框架 | 命令 |
|------|------|
| Go | `go test -v` |
| JavaScript/TypeScript | `npm test` / `npx jest` |
| Python | `pytest -v` |
| Rust | `cargo test` |
## 参数
| 参数 | 类型 | 说明 |
|------|------|------|
| `framework` | string | 测试框架:go, jest, pytest, cargo(默认 go) |
| `path` | string | 测试文件或目录路径 |
| `pattern` | string | 测试名称匹配模式 |
| `work_dir` | string | 工作目录(默认当前目录) |
## 使用示例
```json
{
"framework": "go",
"path": "./tests",
"pattern": "TestMain",
"work_dir": "/path/to/project"
}
```
```json
{
"framework": "jest",
"path": "test.spec.ts"
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!