smoke-tests
Installation
SKILL.md
Smoke Tests
Minimal, rapid tests that validate critical user-facing functionality before slower suites run. If smoke tests fail, the build is broken. Full suite doesn't run. Characteristics: minimal setup · fast (seconds) · happy paths only · high signal-to-noise
Identify Existing Smoke Tests
| Pattern | Detection |
|---|---|
it.only() / describe.only() |
.only marker — others skip automatically |
describe('Smoke Tests', ...) |
Group by name |
tests/smoke/ directory |
Convention-based directory |
// @smoke / // @critical comment |
Grep for tag |