jest-skill AGENTS.md

jest-skill AGENTS.md is an instructions file for Codex, OpenCode from anivar/jest-skill. It costs 5,070 tokens per session, scanned A, original, MIT.

A guide to Jest, a JavaScript and TypeScript tool for running automated tests. It explains test assertions, mock objects, timers, snapshots, configuration, and common mistakes.

In plain words
What is it for?
Use it when creating, reviewing, or debugging Jest tests and configuring test runs or coverage.
Why use it?
It helps coding agents write tests that behave reliably, especially when replacing dependencies with mocks or testing asynchronous code.

Instructions file for CodexOpenCode

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 instructions/anivar/jest-skill/agents-md
Clone the repo
git clone --depth 1 https://github.com/anivar/jest-skill

Made for: Codex, OpenCode.

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 jest-skill AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/anivar/jest-skill/agents-md.svg)](https://agentmods.dev/instructions/anivar/jest-skill/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/anivar/jest-skill/agents-md"><img src="https://agentmods.dev/badge/instructions/anivar/jest-skill/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 5,070 This file is loaded in full into every session.
When invoked 5,070 The same file — it is already loaded in full.
Security scan A 1 finding. 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.05070 $0.05070
Opus 5 $0.02535 $0.02535
Sonnet 5 $0.01014 $0.01014
Haiku 4.5 $0.00507 $0.00507

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

Security

Grade A, and why

jest-skill AGENTS.md scanned grade A with 1 finding 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 4d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| Node module (`axios`) | `<rootDir>/__mocks__/axios.js` | Yes |
AGENTS.md · 648 lines

How it starts

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

Jest — Complete Guide

This document is for AI agents and LLMs to follow when writing, reviewing, or debugging Jest tests. It compiles all rules and references into a single executable guide.

Baseline: jest ^30.0.0 with JavaScript or TypeScript (audited against jest 30.4.2)


Abstract

Jest is the most widely-used JavaScript testing framework, providing a test runner, assertion library, mock system, and coverage reporter in one package. This guide covers the most impactful patterns and pitfalls: mock lifecycle management (clear vs reset vs restore), async testing traps (floating promises, missing assertion guards), matcher selection (toBe vs toEqual vs toStrictEqual), timer mocking (recursive safety, async timers), module mocking (hoisting, ESM, per-test mocks), snapshot testing (determinism, property matchers), configuration (coverage thresholds, environments, ESM transforms), and CI optimization (workers, sharding). Each rule includes incorrect and correct code examples targeting specific mistakes AI agents commonly make.


Table of Contents

  1. Mock Design — CRITICAL
  2. Async Testing — CRITICAL
  3. Matcher Usage — HIGH
  4. Timer Mocking — HIGH
  5. Test Structure — HIGH
  6. Module Mocking — MEDIUM
  7. Snapshot Testing — MEDIUM
  8. Configuration — MEDIUM
  9. Performance & CI — MEDIUM

1. Mock Design

Impact: CRITICAL

Rule: clearAllMocks vs resetAllMocks vs restoreAllMocks

Jest provides three mock-cleanup functions with very different behaviors. Using the wrong one leaves stale mocks in place.

// INCORRECT — clearAllMocks only clears call history, not implementations
afterEach(() => {
  jest.clearAllMocks();
});

test('first', () => {
  jest.spyOn(Math, 'random').mockReturnValue(0.5);
  expect(Math.random()).toBe(0.5);
});

test('second', () => {
  // Math.random is STILL mocked — returns 0.5
  expect(Math.random()).not.toBe(0.5); // FAILS
});

// CORRECT — restoreAllMocks restores original implementations
afterEach(() => {
  jest.restoreAllMocks();
});

Read the full file on GitHub · 648 lines

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. 4d ago First seen · 648 lines · 5,070 tokens per session scan A 90ac0406de57

Subscribe to this mod's changes

jest-skill AGENTS.md is an instructions file published in the GitHub repository anivar/jest-skill (6 stars, last pushed 26d ago), licensed MIT. It adds 5,070 tokens to every session, about $0.0253 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.