jest
npx skills add https://github.com/anivar/jest-skill --skill jest
Agent 安装分布
Skill 文档
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 deprecates the done callback in favor of async patterns. 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 restoreAllMocksmock-spy-restoreâ Always restore jest.spyOn; prefer restoreMocks configmock-factory-hoistingâ jest.mock factory cannot reference outer variablesmock-partial-require-actualâ Use jest.requireActual for partial module mockingmock-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 skippedasync-expect-assertionsâ Use expect.assertions(n) to verify async assertions ranasync-done-try-catchâ Wrap expect in try/catch when using done callback
3. Matcher Usage (HIGH)
matcher-equality-choiceâ toBe vs toEqual vs toStrictEqualmatcher-floating-pointâ Use toBeCloseTo for floats, never toBematcher-error-wrappingâ Wrap throwing code in arrow function for toThrow
4. Timer Mocking (HIGH)
timer-recursive-safetyâ Use runOnlyPendingTimers for recursive timerstimer-async-timersâ Use async timer methods when promises are involvedtimer-selective-fakingâ Use doNotFake to leave specific APIs real
5. Test Structure (HIGH)
structure-setup-scopeâ beforeEach/afterEach are scoped to describe blocksstructure-test-isolationâ Each test must be independent; reset state in beforeEachstructure-sync-definitionâ Tests must be defined synchronously
6. Module Mocking (MEDIUM)
module-manual-mock-conventionsâ mocks directory conventionsmodule-esm-unstable-mockâ Use jest.unstable_mockModule for ESMmodule-do-mock-per-testâ jest.doMock + resetModules for per-test mocks
7. Snapshot Testing (MEDIUM)
snapshot-keep-smallâ Keep snapshots small and focusedsnapshot-property-matchersâ Use property matchers for dynamic fieldssnapshot-deterministicâ Mock non-deterministic values for stable snapshots
8. Configuration (MEDIUM)
config-coverage-thresholdsâ Set per-directory coverage thresholdsconfig-transform-node-modulesâ Configure transformIgnorePatterns for ESM packagesconfig-environment-choiceâ Per-file @jest-environment docblock over global jsdom
9. Performance & CI (MEDIUM)
perf-ci-workersâ –runInBand or –maxWorkers for CIperf-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