klh-testing-patterns

klh-testing-patterns is a skill for Claude Code, Codex from klh/speedy-claude. It costs 42 tokens per session (1,616 once invoked), scanned A, original, MIT.

A guide to Jest testing patterns, reusable test data factories, mocking, and test-driven development. TDD means writing a failing test first, making it pass with minimal code, and then improving the code.

In plain words
What is it for?
Use it to write unit tests, create test factories, set up mocks, and follow a TDD workflow.
Why use it?
It helps keep tests focused on observable behavior and reduces duplicated setup. The workflow also provides a clear way to develop changes from explicit tests.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to write unit tests, create test factories, set up mocks, and follow a TDD workflow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/klh/speedy-claude/klh-testing-patterns
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.

Any agent
npx skills add klh/speedy-claude --skill klh-testing-patterns
Clone the repo
git clone --depth 1 https://github.com/klh/speedy-claude

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 klh-testing-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/klh/speedy-claude/klh-testing-patterns/github.svg)](https://agentmods.dev/skills/klh/speedy-claude/klh-testing-patterns)
Your own site
<a href="https://agentmods.dev/skills/klh/speedy-claude/klh-testing-patterns"><img src="https://agentmods.dev/badge/skills/klh/speedy-claude/klh-testing-patterns/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for klh-testing-patterns

Your own site · 80×15
<a href="https://agentmods.dev/skills/klh/speedy-claude/klh-testing-patterns"><img src="https://agentmods.dev/badge/skills/klh/speedy-claude/klh-testing-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,616 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 9
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.1 $0.00042 $0.01616
Opus 5 $0.00021 $0.00808
Sonnet 5 $0.00008 $0.00323
Haiku 4.5 $0.00004 $0.00162

Measured 8d ago against content hash 854891b466e2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

klh-testing-patterns 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 8d ago.

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.

skills/klh-testing-patterns/SKILL.md · 287 lines

How it starts

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

Testing Patterns and Utilities

Part of klh/skills — personal agent skills by Klaus L. Hougesen. Install: npx skills add klh/skills --skill klh-testing-patterns

Overview

Jest testing patterns, factory functions, mocking strategies, and TDD workflow.

When to Use

  • When writing unit tests or creating test factories
  • When following TDD red-green-refactor cycle
  • When setting up mocking strategies

Testing Philosophy

Test-Driven Development (TDD):

  • Write failing test FIRST
  • Implement minimal code to pass
  • Refactor after green
  • Never write production code without a failing test

Behavior-Driven Testing:

  • Test behavior, not implementation
  • Focus on public APIs and business requirements
  • Avoid testing implementation details
  • Use descriptive test names that describe behavior

Factory Pattern:

  • Create getMockX(overrides?: Partial<X>) functions
  • Provide sensible defaults
  • Allow overriding specific properties
  • Keep tests DRY and maintainable

RED Checkpoint

Before writing any implementation:

  1. Write the failing test FIRST
  2. Run it — it MUST fail cleanly (not crash, not pass, not error on setup)
  3. Verify the failure message describes the expected behavior
  4. Only then write the minimal implementation

A test that passes before implementation is a broken assertion. Research shows ~62% of LLM-generated test assertions are incorrect — verify each one would catch a real bug.

Test Utilities

Custom Render Function

Create a custom render that wraps components with required providers:

// src/utils/testUtils.tsx
import { render } from '@testing-library/react-native';
import { ThemeProvider } from './theme';

export const renderWithTheme = (ui: React.ReactElement) => {
  return render(
    <ThemeProvider>{ui}</ThemeProvider>
  );
};

Usage:

import { renderWithTheme } from 'utils/testUtils';
import { screen } from '@testing-library/react-native';

it('should render component', () => {
  renderWithTheme(<MyComponent />);
  expect(screen.getByText('Hello')).toBeTruthy();
});

Read the full file on GitHub · 287 lines

Files

What ships with it

1 file 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. 8d ago First seen · 287 lines · 42 tokens per session scan A 854891b466e2

Subscribe to this mod's changes

klh-testing-patterns is a skill published in the GitHub repository klh/speedy-claude (11 stars, last pushed 2d ago), licensed MIT. It adds 42 tokens to every session and 1,616 once invoked, about $0.0002 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-09-04.