**Category:** Testing (Bundled)
Runs tests with auto-detection of framework, type, and scope.
/plugin marketplace add nguyenthienthanh/aura-frog/plugin install aura-frog@aurafrogCategory: Testing (Bundled) Scope: Session Version: 2.0.0
Unified testing command with intelligent test type detection. Replaces individual test commands with a single entry point.
# Auto-detect and run appropriate tests
/test
# Specific test types
/test unit [path]
/test e2e [path]
/test coverage [path]
/test watch [path]
# Documentation
/test docs
| Subcommand | Description | Example |
|---|---|---|
unit [path] | Run unit tests | /test unit src/services/ |
e2e [path] | Run E2E tests | /test e2e |
coverage [path] | Run with coverage report | /test coverage src/ |
watch [path] | Run in watch mode | /test watch |
docs | Generate test documentation | /test docs |
snapshot | Update snapshots | /test snapshot |
debug <test> | Debug specific test | /test debug "user login" |
When called without subcommand, detects:
🧪 Test Commands
Detected: vitest (coverage: 78%)
Quick Actions:
[1] Run all tests
[2] Run changed tests only
[3] Run with coverage
Test Types:
[4] Unit tests
[5] Integration tests
[6] E2E tests
Utilities:
[7] Watch mode
[8] Debug failing test
[9] Update snapshots
Select [1-9] or type command:
frameworks[6]{framework,runner,coverage}:
Vitest,npx vitest,@vitest/coverage-v8
Jest,npx jest,--coverage
Pytest,pytest,pytest-cov
PHPUnit,./vendor/bin/phpunit,--coverage-html
Go,go test,go test -cover
Cypress,npx cypress run,--
## 📊 Test Coverage Report
**Overall:** 78% (target: 80%)
| File | Lines | Branches | Functions |
|------|-------|----------|-----------|
| auth.service.ts | 92% | 85% | 100% |
| user.service.ts | 75% | 70% | 80% |
| api.controller.ts | 68% | 60% | 75% |
### Uncovered Lines
- `auth.service.ts:45-48` - Error handling branch
- `user.service.ts:120-125` - Edge case validation
### Recommendations
1. Add test for auth error handling
2. Cover user validation edge cases
skills/test-writer/SKILL.mdskills/testing-patterns/SKILL.mdrules/tdd-workflow.mdcommands/test/unit.md, commands/test/e2e.mdVersion: 2.0.0 | Last Updated: 2026-01-21