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 · HTTP only — no JS runtime, no test framework
Scope: this skill covers HTTP API smoke tests only, authored with Hurl or curl. No Jest, Vitest, or other in-process JS test runners — smoke tests here are black-box HTTP checks against a running app (local, staging, or preview).
Identify Existing Smoke Tests
| Pattern | Detection |
|---|---|
smoke-tests/ directory |
Convention-based directory |
*.hurl files |
Hurl scenario files |
smoke.sh / smoke-test.sh |
curl-based shell script |
# @smoke / # @critical comment |
Grep for tag |