Test triage
Use this skill when you are asked to:
- •Fix a failing test (local or CI).
- •Investigate a hanging test run (“tests pass but the process never exits”).
- •Identify what’s keeping Node alive (timers, sockets, handles).
Principles
- •Logs first: capture the failing command + error output before proposing changes.
- •Minimize the reproduction: run the smallest scope that reproduces the failure.
- •Fix the root cause (common culprits: long timers without
.unref(), open sockets, background watchers).
Canonical workflows
Backend test runs
Use the wrapper script to run a targeted backend test scope:
- •
scripts/run-backend-tests.mjs
Default is unit tests (fast). Use --scope integration or --scope all when required.
“Node won’t exit” / hanging tests
Preferred workflow:
- •Re-run the smallest test scope.
- •If the process hangs, run the hang-diagnose wrapper:
- •
scripts/diagnose-backend-hang.mjs
- •
- •If you confirm a long-lived timer is the culprit, apply the repo rule:
- •Any long
setTimeout/setIntervalmust use.unref()unless explicitly required to keep the process alive.
- •Any long
Last reviewed: 2026-01-15