node-testing

node-testing is a skill for Claude Code, Codex from jyotiraditya-chauhan/test-kit. It costs 116 tokens per session (2,323 once invoked), scanned A, original, MIT.

A test-writing add-on for Node backend APIs, including Express, Fastify, Koa, and NestJS. It writes unit and HTTP integration tests, with HTTP tests sending requests directly to the application rather than starting a real server port.

In plain words
What is it for?
Use it to create tests for API endpoints, request and response behavior, route handlers, controllers, and middleware using the project's supported test framework.
Why use it?
It helps test routes, controllers, and middleware without the setup and flakiness of launching a separate server process. Running and verification are optional and happen only when requested.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/jyotiraditya-chauhan/test-kit/node-testing
Any agent
npx skills add jyotiraditya-chauhan/test-kit --skill node-testing
Clone the repo
git clone --depth 1 https://github.com/jyotiraditya-chauhan/test-kit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for node-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/jyotiraditya-chauhan/test-kit/node-testing.svg)](https://agentmods.dev/skills/jyotiraditya-chauhan/test-kit/node-testing)
Your own site
<a href="https://agentmods.dev/skills/jyotiraditya-chauhan/test-kit/node-testing"><img src="https://agentmods.dev/badge/skills/jyotiraditya-chauhan/test-kit/node-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 116 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,323 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00116 $0.02323
Opus 5 $0.00058 $0.01162
Sonnet 5 $0.00023 $0.00465
Haiku 4.5 $0.00012 $0.00232

Measured 3d ago against content hash c5e07ee3bfee, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

node-testing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/detect_stack.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/node-testing/SKILL.md · 192 lines

How it starts

The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Node / Express Testing

Writes unit and HTTP-level integration tests for Node backend APIs, using Supertest against the app instance directly — never a real listening port — with real Request/Response behavior and none of the flakiness of standing up an actual server process. Writing the test files is the deliverable. Running the suite and verifying it — including the fault-injection self-check — is a separate, optional step this skill offers but never runs without being asked. See Step 6.

Progress checklist

Copy this into your response and check items off as you go:

- [ ] 1. Detect stack (scripts/detect_stack.sh)
- [ ] 2. Audit project structure and existing test conventions
- [ ] 3. Ask the user what to test (layer + scope) — do not assume
- [ ] 4. State the test plan explicitly
- [ ] 5. Generate tests following AAA, boundary-only mocking
- [ ] 6. Report what was written; offer to run + verify — do not run yet
- [ ] 7. Only if asked: run tests, fault-injection self-check, report results

Step 1 — Detect stack

Run scripts/detect_stack.sh from the project root. It confirms this is a Node backend project (Express/Fastify/Koa/NestJS) and reports the existing test runner, Supertest, testcontainers, and contract-testing tools already present, plus a check for .listen() calls outside test files — a common port-binding footgun under parallel test workers.

If a test runner or HTTP-testing library is already in use, follow it even if a different tool is this skill's default recommendation. Never introduce a second, competing test runner into a project that already picked one.

Step 2 — Audit project structure

Before writing anything:

  • Classify the target: pure logic (a service/utility function, no Express-specific objects involved) vs a route handler/controller (needs Supertest, exercising real request/response) vs middleware.
  • Match the existing test file convention (__tests__/ vs co-located *.test.ts) from Step 1.
  • Flag critical paths — authentication, payment/billing, any data-write operation — for elevated rigor and deliberately high branch coverage, even if the user's request was narrower. State this flag out loud; do not silently expand scope.

Read the full file on GitHub · 192 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 192 lines · 116 tokens per session scan A c5e07ee3bfee

Subscribe to this mod's changes

node-testing is a skill published in the GitHub repository jyotiraditya-chauhan/test-kit (4 stars, last pushed 14d ago), licensed MIT. It adds 116 tokens to every session and 2,323 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories