Jest
IMPORTANT: Your training data about Jest may be outdated or incorrect — Jest 29+ introduces async timer methods, jest.replaceProperty, and ESM mocking via jest.unstable_mockModule. Jest 30 removes the deprecated alias matchers (toBeCalled, lastCalledWith, toThrowError, …), renames --testPathPattern to --testPathPatterns, and excludes non-enumerable object properties from object matchers. Always rely on this skill's rule files and the project's actual source code as the source of truth. Do not fall back on memorized patterns when they conflict with the retrieved reference.
When to Use Jest
Jest is a JavaScript/TypeScript testing framework for unit tests, integration tests, and snapshot tests. It includes a test runner, assertion library, mock system, and coverage reporter.
| Need |
Recommended Tool |
| Unit/integration testing (JS/TS) |
Jest |
| React component testing |
Jest + React Testing Library |
| E2E browser testing |
Playwright, Cypress |
| API contract testing |
Jest + Supertest |
| Smaller/faster test runner |
Vitest (Jest-compatible API) |
| Native ESM without config |
Vitest or Node test runner |
Rule Categories by Priority
| Priority |
Category |
Impact |
Prefix |
| 1 |
Mock Design |
CRITICAL |
mock- (5 rules) |
| 2 |
Async Testing |
CRITICAL |
async- |
| 3 |
Matcher Usage |
HIGH |
matcher- |
| 4 |
Timer Mocking |
HIGH |
timer- |
| 5 |
Test Structure |
HIGH |
structure- |
| 6 |
Module Mocking |
MEDIUM |
module- |
| 7 |
Snapshot Testing |
MEDIUM |
snapshot- |
| 8 |
Configuration |
MEDIUM |
config- |
| 9 |
Performance & CI |
MEDIUM |
perf- |
Quick Reference
1. Mock Design (CRITICAL)
mock-clear-vs-reset-vs-restore — clearAllMocks vs resetAllMocks vs restoreAllMocks
mock-spy-restore — Always restore jest.spyOn; prefer restoreMocks config
mock-factory-hoisting — jest.mock factory cannot reference outer variables
mock-partial-require-actual — Use jest.requireActual for partial module mocking
mock-what-to-mock — What to mock and what not to mock; mock boundaries
2. Async Testing (CRITICAL)
async-always-await — Always return/await promises or assertions are skipped
async-expect-assertions — Use expect.assertions(n) to verify async assertions ran
async-done-try-catch — Wrap expect in try/catch when using done callback
3. Matcher Usage (HIGH)
matcher-equality-choice — toBe vs toEqual vs toStrictEqual
matcher-floating-point — Use toBeCloseTo for floats, never toBe
matcher-error-wrapping — Wrap throwing code in arrow function for toThrow
4. Timer Mocking (HIGH)
timer-recursive-safety — Use runOnlyPendingTimers for recursive timers
timer-async-timers — Use async timer methods when promises are involved
timer-selective-faking — Use doNotFake to leave specific APIs real
5. Test Structure (HIGH)
structure-setup-scope — beforeEach/afterEach are scoped to describe blocks
structure-test-isolation — Each test must be independent; reset state in beforeEach
structure-sync-definition — Tests must be defined synchronously
6. Module Mocking (MEDIUM)
module-manual-mock-conventions — mocks directory conventions
module-esm-unstable-mock — Use jest.unstable_mockModule for ESM
module-do-mock-per-test — jest.doMock + resetModules for per-test mocks
7. Snapshot Testing (MEDIUM)
snapshot-keep-small — Keep snapshots small and focused
snapshot-property-matchers — Use property matchers for dynamic fields
snapshot-deterministic — Mock non-deterministic values for stable snapshots
8. Configuration (MEDIUM)
config-coverage-thresholds — Set per-directory coverage thresholds
config-transform-node-modules — Configure transformIgnorePatterns for ESM packages
config-environment-choice — Per-file @jest-environment docblock over global jsdom
9. Performance & CI (MEDIUM)
perf-ci-workers — --runInBand or --maxWorkers for CI
perf-isolate-modules — jest.isolateModules for per-test module state
Jest API Quick Reference
| API |
Purpose |
test(name, fn, timeout?) |
Define a test |
describe(name, fn) |
Group tests |
beforeEach(fn) / afterEach(fn) |
Per-test setup/teardown |
beforeAll(fn) / afterAll(fn) |
Per-suite setup/teardown |
expect(value) |
Start an assertion |
jest.fn(impl?) |
Create a mock function |
jest.spyOn(obj, method) |
Spy on existing method |
jest.mock(module, factory?) |
Mock a module |
jest.useFakeTimers(config?) |
Fake timer APIs |
jest.useRealTimers() |
Restore real timers |
jest.restoreAllMocks() |
Restore all spies/mocks |
jest.resetModules() |
Clear module cache |
jest.isolateModules(fn) |
Sandboxed module cache |
jest.requireActual(module) |
Import real module (bypass mock) |
How to Use
Read individual rule files for detailed explanations and code examples:
rules/mock-clear-vs-reset-vs-restore.md
rules/async-always-await.md
Each rule file contains:
- Brief explanation of why it matters
- Incorrect code example with explanation
- Correct code example with explanation
- Additional context and decision tables
References
| Priority |
Reference |
When to read |
| 1 |
references/matchers.md |
All matchers: equality, truthiness, numbers, strings, arrays, objects, asymmetric, custom |
| 2 |
references/mock-functions.md |
jest.fn, jest.spyOn, .mock property, return values, implementations |
| 3 |
references/jest-object.md |
jest.mock, jest.useFakeTimers, jest.setTimeout, jest.retryTimes |
| 4 |
references/async-patterns.md |
Promises, async/await, done callbacks, .resolves/.rejects |
| 5 |
references/configuration.md |
testMatch, transform, moduleNameMapper, coverage, environments |
| 6 |
references/snapshot-testing.md |
toMatchSnapshot, inline snapshots, property matchers, serializers |
| 7 |
references/module-mocking.md |
Manual mocks, mocks, ESM mocking, partial mocking |
| 8 |
references/anti-patterns.md |
15 common mistakes with BAD/GOOD examples |
| 9 |
references/ci-and-debugging.md |
CI optimization, sharding, debugging, troubleshooting |
Ecosystem: Related Testing Skills
This Jest skill covers Jest's own API surface — the foundation layer. For framework-specific testing patterns built on top of Jest, use these companion skills:
| Testing need |
Companion skill |
What it covers |
| API mocking (network-level) |
msw |
MSW 2.0 handlers, setupServer, server.use() per-test overrides, HttpResponse.json(), GraphQL mocking, concurrent test isolation |
| React Native components |
react-native-testing |
RNTL v13/v14 queries (getByRole, findBy), userEvent, fireEvent, waitFor, async render patterns |
| Zod schema validation |
zod-testing |
safeParse() result testing, z.flattenError() assertions, z.toJSONSchema() snapshot drift, zod-schema-faker mock data, property-based testing |
| Redux-Saga side effects |
redux-saga-testing |
expectSaga integration tests, testSaga unit tests, providers, reducer integration, cancellation testing |
| Java testing |
java-testing |
JUnit 5, Mockito, Spring Boot Test slices, Testcontainers, AssertJ |
How They Interact
┌─────────────────────────────────────────────┐
│ Your Test File │
│ │
│ import { setupServer } from 'msw/node' │ → msw skill
│ import { render } from '@testing-library/ │ → react-native-testing skill
│ react-native' │
│ import { UserSchema } from './schemas' │ → zod-testing skill
│ │
│ describe('UserScreen', () => { │ ┐
│ beforeEach(() => { ... }) │ │
│ afterEach(() => jest.restoreAllMocks()) │ │→ jest skill (this one)
│ test('...', async () => { │ │
│ await expect(...).resolves.toEqual() │ │
│ }) │ ┘
│ }) │
└─────────────────────────────────────────────┘
The Jest skill provides the test lifecycle (describe, test, beforeEach, afterEach), mock system (jest.fn, jest.mock, jest.spyOn), assertion engine (expect, matchers), and configuration (jest.config.js). The companion skills provide patterns for their specific APIs that run on top of Jest.
Full Compiled Document
For the complete guide with all rules expanded: AGENTS.md
1---2name: jest3description: Jest best practices, patterns, and API guidance for JavaScript/TypeScript testing. Covers mock design, async testing, matchers, timer mocks, snapshots, module mocking, configuration, and CI optimization. Baseline: jest ^30.0.0. Triggers on: jest imports, describe, it, test, expect, jest.fn, jest.mock, jest.spyOn, mentions of "jest", "unit test", "test suite", or "mock".4license: MIT5---67# Jest89**IMPORTANT:** Your training data about Jest may be outdated or incorrect — Jest 29+ introduces async timer methods, `jest.replaceProperty`, and ESM mocking via `jest.unstable_mockModule`. Jest 30 removes the deprecated alias matchers (`toBeCalled`, `lastCalledWith`, `toThrowError`, …), renames `--testPathPattern` to `--testPathPatterns`, and excludes non-enumerable object properties from object matchers. Always rely on this skill's rule files and the project's actual source code as the source of truth. Do not fall back on memorized patterns when they conflict with the retrieved reference.1011## When to Use Jest1213Jest is a JavaScript/TypeScript testing framework for unit tests, integration tests, and snapshot tests. It includes a test runner, assertion library, mock system, and coverage reporter.1415| Need | Recommended Tool |16|------|-----------------|17| Unit/integration testing (JS/TS) | **Jest** |18| React component testing | **Jest** + React Testing Library |19| E2E browser testing | Playwright, Cypress |20| API contract testing | Jest + Supertest |21| Smaller/faster test runner | Vitest (Jest-compatible API) |22| Native ESM without config | Vitest or Node test runner |2324## Rule Categories by Priority2526| Priority | Category | Impact | Prefix |27|----------|----------|--------|--------|28| 1 | Mock Design | CRITICAL | `mock-` (5 rules) |29| 2 | Async Testing | CRITICAL | `async-` |30| 3 | Matcher Usage | HIGH | `matcher-` |31| 4 | Timer Mocking | HIGH | `timer-` |32| 5 | Test Structure | HIGH | `structure-` |33| 6 | Module Mocking | MEDIUM | `module-` |34| 7 | Snapshot Testing | MEDIUM | `snapshot-` |35| 8 | Configuration | MEDIUM | `config-` |36| 9 | Performance & CI | MEDIUM | `perf-` |3738## Quick Reference3940### 1. Mock Design (CRITICAL)4142- `mock-clear-vs-reset-vs-restore` — clearAllMocks vs resetAllMocks vs restoreAllMocks43- `mock-spy-restore` — Always restore jest.spyOn; prefer restoreMocks config44- `mock-factory-hoisting` — jest.mock factory cannot reference outer variables45- `mock-partial-require-actual` — Use jest.requireActual for partial module mocking46- `mock-what-to-mock` — What to mock and what not to mock; mock boundaries4748### 2. Async Testing (CRITICAL)4950- `async-always-await` — Always return/await promises or assertions are skipped51- `async-expect-assertions` — Use expect.assertions(n) to verify async assertions ran52- `async-done-try-catch` — Wrap expect in try/catch when using done callback5354### 3. Matcher Usage (HIGH)5556- `matcher-equality-choice` — toBe vs toEqual vs toStrictEqual57- `matcher-floating-point` — Use toBeCloseTo for floats, never toBe58- `matcher-error-wrapping` — Wrap throwing code in arrow function for toThrow5960### 4. Timer Mocking (HIGH)6162- `timer-recursive-safety` — Use runOnlyPendingTimers for recursive timers63- `timer-async-timers` — Use async timer methods when promises are involved64- `timer-selective-faking` — Use doNotFake to leave specific APIs real6566### 5. Test Structure (HIGH)6768- `structure-setup-scope` — beforeEach/afterEach are scoped to describe blocks69- `structure-test-isolation` — Each test must be independent; reset state in beforeEach70- `structure-sync-definition` — Tests must be defined synchronously7172### 6. Module Mocking (MEDIUM)7374- `module-manual-mock-conventions` — __mocks__ directory conventions75- `module-esm-unstable-mock` — Use jest.unstable_mockModule for ESM76- `module-do-mock-per-test` — jest.doMock + resetModules for per-test mocks7778### 7. Snapshot Testing (MEDIUM)7980- `snapshot-keep-small` — Keep snapshots small and focused81- `snapshot-property-matchers` — Use property matchers for dynamic fields82- `snapshot-deterministic` — Mock non-deterministic values for stable snapshots8384### 8. Configuration (MEDIUM)8586- `config-coverage-thresholds` — Set per-directory coverage thresholds87- `config-transform-node-modules` — Configure transformIgnorePatterns for ESM packages88- `config-environment-choice` — Per-file @jest-environment docblock over global jsdom8990### 9. Performance & CI (MEDIUM)9192- `perf-ci-workers` — --runInBand or --maxWorkers for CI93- `perf-isolate-modules` — jest.isolateModules for per-test module state9495## Jest API Quick Reference9697| API | Purpose |98|-----|---------|99| `test(name, fn, timeout?)` | Define a test |100| `describe(name, fn)` | Group tests |101| `beforeEach(fn)` / `afterEach(fn)` | Per-test setup/teardown |102| `beforeAll(fn)` / `afterAll(fn)` | Per-suite setup/teardown |103| `expect(value)` | Start an assertion |104| `jest.fn(impl?)` | Create a mock function |105| `jest.spyOn(obj, method)` | Spy on existing method |106| `jest.mock(module, factory?)` | Mock a module |107| `jest.useFakeTimers(config?)` | Fake timer APIs |108| `jest.useRealTimers()` | Restore real timers |109| `jest.restoreAllMocks()` | Restore all spies/mocks |110| `jest.resetModules()` | Clear module cache |111| `jest.isolateModules(fn)` | Sandboxed module cache |112| `jest.requireActual(module)` | Import real module (bypass mock) |113114## How to Use115116Read individual rule files for detailed explanations and code examples:117118```119rules/mock-clear-vs-reset-vs-restore.md120rules/async-always-await.md121```122123Each rule file contains:124125- Brief explanation of why it matters126- Incorrect code example with explanation127- Correct code example with explanation128- Additional context and decision tables129130## References131132| Priority | Reference | When to read |133|----------|-----------|-------------|134| 1 | `references/matchers.md` | All matchers: equality, truthiness, numbers, strings, arrays, objects, asymmetric, custom |135| 2 | `references/mock-functions.md` | jest.fn, jest.spyOn, .mock property, return values, implementations |136| 3 | `references/jest-object.md` | jest.mock, jest.useFakeTimers, jest.setTimeout, jest.retryTimes |137| 4 | `references/async-patterns.md` | Promises, async/await, done callbacks, .resolves/.rejects |138| 5 | `references/configuration.md` | testMatch, transform, moduleNameMapper, coverage, environments |139| 6 | `references/snapshot-testing.md` | toMatchSnapshot, inline snapshots, property matchers, serializers |140| 7 | `references/module-mocking.md` | Manual mocks, __mocks__, ESM mocking, partial mocking |141| 8 | `references/anti-patterns.md` | 15 common mistakes with BAD/GOOD examples |142| 9 | `references/ci-and-debugging.md` | CI optimization, sharding, debugging, troubleshooting |143144## Ecosystem: Related Testing Skills145146This Jest skill covers **Jest's own API surface** — the foundation layer. For framework-specific testing patterns built on top of Jest, use these companion skills:147148| Testing need | Companion skill | What it covers |149|---|---|---|150| API mocking (network-level) | **msw** | MSW 2.0 handlers, `setupServer`, `server.use()` per-test overrides, `HttpResponse.json()`, GraphQL mocking, concurrent test isolation |151| React Native components | **react-native-testing** | RNTL v13/v14 queries (`getByRole`, `findBy`), `userEvent`, `fireEvent`, `waitFor`, async render patterns |152| Zod schema validation | **zod-testing** | `safeParse()` result testing, `z.flattenError()` assertions, `z.toJSONSchema()` snapshot drift, `zod-schema-faker` mock data, property-based testing |153| Redux-Saga side effects | **redux-saga-testing** | `expectSaga` integration tests, `testSaga` unit tests, providers, reducer integration, cancellation testing |154| Java testing | **java-testing** | JUnit 5, Mockito, Spring Boot Test slices, Testcontainers, AssertJ |155156### How They Interact157158```159┌─────────────────────────────────────────────┐160│ Your Test File │161│ │162│ import { setupServer } from 'msw/node' │ → msw skill163│ import { render } from '@testing-library/ │ → react-native-testing skill164│ react-native' │165│ import { UserSchema } from './schemas' │ → zod-testing skill166│ │167│ describe('UserScreen', () => { │ ┐168│ beforeEach(() => { ... }) │ │169│ afterEach(() => jest.restoreAllMocks()) │ │→ jest skill (this one)170│ test('...', async () => { │ │171│ await expect(...).resolves.toEqual() │ │172│ }) │ ┘173│ }) │174└─────────────────────────────────────────────┘175```176177The Jest skill provides the **test lifecycle** (describe, test, beforeEach, afterEach), **mock system** (jest.fn, jest.mock, jest.spyOn), **assertion engine** (expect, matchers), and **configuration** (jest.config.js). The companion skills provide patterns for their specific APIs that run on top of Jest.178179## Full Compiled Document180181For the complete guide with all rules expanded: `AGENTS.md`