Run tests with smart filtering by scope, class, or file path
Scanned 9/12/2026
Install to Claude Code
npx -y skills add gacela-project/gacela --skill test --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Test?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gacela-project-test)More formats (shields.io, HTML) on the badges page.
---
description: Run tests with smart filtering by scope, class, or file path
argument-hint: "[scope-or-filter]"
disable-model-invocation: true
allowed-tools: "Bash(composer *), Bash(./vendor/bin/phpunit *)"
---
# Quick Test Runner
1. If `$ARGUMENTS` is empty or `all`:
```bash
composer test
```
2. If `$ARGUMENTS` is a known scope:
- `quality` → `composer quality`
- `unit` → `composer test-unit`
- `integration` → `composer test-integration`
- `feature` → `composer test-feature`
- `quick` → `composer phpunit` (skip static analysis)
- `bench` → `composer phpbench`
- `infection` → `composer infection`
3. If `$ARGUMENTS` looks like a test class or method name:
```bash
./vendor/bin/phpunit --filter "$ARGUMENTS"
```
4. If `$ARGUMENTS` looks like a file path:
```bash
./vendor/bin/phpunit "$ARGUMENTS"
```
5. Report results clearly with pass/fail count.
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!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.