Jest Patterns
Modern Jest testing patterns, anti-patterns, and quality rules for JavaScript/TypeScript.
jest_smell.py detects structural test smells deterministically via regex. The prose sections below cover judgment-level guidance that the script cannot evaluate. Never re-derive smell detection by eye when the script can do it; always run the script for consistent, auditable findings.
Core Principles
| Principle | Description |
|---|---|
| Test Behavior | Test what code does, not how it does it |
| Isolation | Each test independent, no shared state |
| AAA Pattern | Arrange → Act → Assert structure |
| Fast Feedback | Tests run in milliseconds |
Patterns vs Anti-Patterns
A mock-call assertion (.toHaveBeenCalledWith, .toHaveBeenCalled) is a valid substitute for a real assertion only at an OUTBOUND boundary the test owns — an HTTP request the code constructs, an event published to an external system — where the call itself IS the observable. It is never a substitute for observing a write path's actual effect; see "Testing Implementation Details" below and the write-path rule in qa.md.
Test Structure (AAA)
// GOOD: Clear AAA structure
describe('UserService', () => {
it('should create user with valid data', async () => {
// Arrange
const userData = { name: 'John', email: 'john@example.com' };
const mockRepo = { save: jest.fn().mockResolvedValue({ id: '1', ...userData }) };
const service = new UserService(mockRepo);
// Act
const result = await service.createUser(userData);
// Assert
expect(result.id).toBe('1');
// mockRepo stands in for an injected collaborator here, illustrating AAA structure only —
// a real createUser write-path test must exercise a real/in-memory DB, not assert on the mock call
expect(mockRepo.save).toHaveBeenCalledWith(userData);
});
});
// BAD: Mixed arrange/act/assert
it('creates user', async () => {
const service = new UserService({ save: jest.fn() });
expect(await service.createUser({ name: 'John' })).toBeDefined();
// What are we testing? Unclear!
});
Mocking
// GOOD: Minimal, focused mocks
const mockFetch = jest.fn().mockResolvedValue({
ok: true,
json: () => Promise.resolve({ data: 'test' })
});
// GOOD: Reset mocks between tests
beforeEach(() => {
jest.clearAllMocks();
});
// GOOD: Mock only what's necessary
jest.mock('./database', () => ({
query: jest.fn()
}));
// BAD: Over-mocking implementation details
jest.mock('./service', () => ({
__esModule: true,
default: jest.fn().mockImplementation(() => ({
method1: jest.fn(),
method2: jest.fn(),
method3: jest.fn(),
// 20 more methods...
}))
}));
Assertions
// GOOD: Specific, meaningful assertions
expect(user.name).toBe('John');
expect(errors).toHaveLength(2);
expect(result).toEqual({ id: '1', status: 'active' });
expect(callback).toHaveBeenCalledWith('arg1', expect.any(Number));
// GOOD: Custom matchers for domain concepts
expect(response).toBeSuccessful();
expect(user).toHavePermission('admin');
// BAD: Vague assertions
expect(result).toBeTruthy();
expect(data).toBeDefined();
expect(obj).toMatchObject({}); // Always passes!
// BAD: Multiple unrelated assertions
expect(user.name).toBe('John');
expect(user.email).toBe('john@example.com');
expect(user.createdAt).toBeDefined();
expect(user.updatedAt).toBeDefined();
expect(user.deletedAt).toBeNull();
// Better: Use snapshot or single toEqual
Async Testing
// GOOD: async/await
it('should fetch user data', async () => {
const data = await fetchUser('123');
expect(data.name).toBe('John');
});
// GOOD: Test rejections
it('should reject for invalid user', async () => {
await expect(fetchUser('invalid')).rejects.toThrow('User not found');
});
// GOOD: waitFor for async UI updates
await waitFor(() => {
expect(screen.getByText('Loaded')).toBeInTheDocument();
});
// BAD: done callback (error-prone)
it('fetches data', (done) => {
fetchUser('123').then((data) => {
expect(data).toBeDefined();
done();
});
});
// BAD: No await (test passes incorrectly)
it('should fail', () => {
expect(asyncOperation()).rejects.toThrow(); // Missing await!
});
Test Organization
// GOOD: Descriptive nested describes
describe('ShoppingCart', () => {
describe('addItem', () => {
it('should add new item to empty cart', () => {});
it('should increment quantity for existing item', () => {});
it('should throw for invalid item', () => {});
});
describe('removeItem', () => {
it('should remove item from cart', () => {});
it('should throw for item not in cart', () => {});
});
});
// GOOD: Setup/teardown at appropriate levels
describe('Database tests', () => {
beforeAll(async () => {
await db.connect();
});
afterAll(async () => {
await db.disconnect();
});
beforeEach(async () => {
await db.clear();
});
});
// BAD: Flat, unclear structure
test('cart add', () => {});
test('cart add existing', () => {});
test('cart remove', () => {});
test('cart clear', () => {});
Anti-Patterns to Avoid
Flaky Tests
// BAD: Time-dependent
it('should expire token', () => {
const token = createToken();
// Depends on system time - will fail randomly
expect(isExpired(token)).toBe(false);
});
// GOOD: Control time
it('should expire token after 1 hour', () => {
jest.useFakeTimers();
const token = createToken();
jest.advanceTimersByTime(59 * 60 * 1000);
expect(isExpired(token)).toBe(false);
jest.advanceTimersByTime(2 * 60 * 1000);
expect(isExpired(token)).toBe(true);
});
// BAD: Random data without seed
it('validates random email', () => {
const email = `user${Math.random()}@test.com`;
expect(isValid(email)).toBe(true);
});
// GOOD: Deterministic test data
it('validates various email formats', () => {
const emails = ['user@test.com', 'user.name@test.co.uk'];
emails.forEach(email => expect(isValid(email)).toBe(true));
});
Test Coupling
// BAD: Tests depend on each other
describe('User flow', () => {
let userId: string;
it('creates user', async () => {
const user = await createUser();
userId = user.id; // Shared state!
});
it('updates user', async () => {
await updateUser(userId, {}); // Fails if first test fails!
});
});
// GOOD: Independent tests
describe('User operations', () => {
it('creates user', async () => {
const user = await createUser();
expect(user.id).toBeDefined();
});
it('updates existing user', async () => {
const user = await createUser(); // Own setup
const updated = await updateUser(user.id, { name: 'New' });
expect(updated.name).toBe('New');
});
});
Testing Implementation Details
// BAD: Testing private methods/state
it('should update internal counter', () => {
const component = new Counter();
component.increment();
expect(component._internalCount).toBe(1); // Private!
});
// GOOD: Test public behavior
it('should display incremented value', () => {
const component = new Counter();
component.increment();
expect(component.getValue()).toBe(1);
});
// BAD: Testing method calls instead of effects
it('should call logger', () => {
const logger = { log: jest.fn() };
doSomething(logger);
expect(logger.log).toHaveBeenCalled(); // Is this the real requirement?
});
// GOOD: Test the actual effect
it('should record action in audit log', async () => {
await doSomething();
const logs = await getAuditLogs();
expect(logs).toContainEqual(expect.objectContaining({
action: 'something',
timestamp: expect.any(Date)
}));
});
Snapshot Abuse
// BAD: Large, unstable snapshots
it('renders page', () => {
expect(render(<FullPage />)).toMatchSnapshot();
// 500+ line snapshot that changes constantly
});
// GOOD: Small, focused snapshots
it('renders error state correctly', () => {
expect(render(<ErrorMessage error="Not found" />)).toMatchSnapshot();
});
// GOOD: Inline snapshots for small values
it('formats date correctly', () => {
expect(formatDate(date)).toMatchInlineSnapshot(`"Jan 13, 2026"`);
});
Configuration Best Practices
// jest.config.js
module.exports = {
// Clear mocks automatically
clearMocks: true,
// Coverage settings
collectCoverageFrom: ['src/**/*.{ts,tsx}', '!src/**/*.d.ts'],
coverageThreshold: {
global: { branches: 80, functions: 80, lines: 80 }
},
// Fast test execution
maxWorkers: '50%',
// Fail fast in CI
bail: process.env.CI ? 1 : 0,
// Clear timeout
testTimeout: 10000,
};
Quality Checklist
| Check | Rule |
|---|---|
| AAA structure | Arrange → Act → Assert clearly separated |
| Isolation | Tests don't share state |
| No flaky tests | No time/random dependencies |
| Fast execution | Unit tests < 100ms each |
| Clear assertions | Specific matchers, not toBeTruthy |
| Minimal mocking | Only mock what's necessary |
| Descriptive names | Test name describes behavior |
| Cleanup | afterEach/afterAll for side effects |
Invocation — Test Smell Detector (L3 Script)
After reviewing or writing Jest test files, run the smell detector to get a structured, auditable finding list. Consume the script's output only — the script source never enters context.
Smells detected:
| ID | Name | Severity | Rule |
|---|---|---|---|
| SMELL-01 | test_only | ERROR | .only() left in — silently skips rest of suite |
| SMELL-02 | test_skip | WARN | .skip() left in — tests silently disabled |
| SMELL-03 | no_expect | ERROR | Test block has no expect() call |
| SMELL-04 | async_no_await | ERROR | async test body has no await |
| SMELL-05 | setTimeout_zero | WARN | setTimeout(fn, 0) in test — use jest.useFakeTimers() |
| SMELL-06 | console_log | WARN | console.log() left in test — pollutes CI output |
| SMELL-07 | done_callback | WARN | done callback pattern — rewrite with async/await |
| SMELL-08 | mock_only_assertions | WARN | Scoped to ORM/DB-CLIENT write mocks only (receiver shaped like (mock)?(prisma|db|database|repo(sitory)?|orm)..., verb create/update/delete/upsert/createMany/updateMany/deleteMany/transaction/save) — fires when every expect() is either (a) a positive ORM-write mock-call verification or (b) a tautological assertion: a field read off an object the same test passed to .mockResolvedValue(...), or a bare status-code check (.status/.statusCode vs a 3-digit literal) with no assertion on the response body. Does not fire when all ORM-write assertions are negative, or when any non-tautological real assertion or non-ORM mock-call verification (HTTP client, logger, event publisher, React callback prop like expect(onClick).toHaveBeenCalled()) is also present — those block firing exactly like a real assertion. A read verb (findMany, findFirst) is out of scope by design (this rule targets writes). Known limitation: regex-only, single-block dataflow — an unconventionally-named ORM mock or multi-hop mockResolvedValue reassignment is missed (under-fires, by design) — advisory only, review findings by hand |
SMELL-08 recall limitation — read before trusting a clean run. "Under-fires, by design" above understates how narrow this rule's recall actually is; the honest reading of a clean SMELL-08 run is "none of the most blatant fully-vacuous ORM/DB-mock tests were found," NOT "no vacuous write-path tests exist here." Measured facts, not estimates (the underlying measurement is shared with the Python pytest_smell.py SMELL-08 rule, which targets the same defect class against DB-session mocks): against fully-vacuous tests (a test whose only assertions are positive DB-write mock-call verifications and/or tautological read-backs — the exact class this rule targets), detection is effectively complete. Against the broader population of tests that contain a positive DB-write mock assertion at all, the rule flags roughly 11% of them — not because the other ~89% are missed defects, but because most of those tests also carry a genuine assertion on a production-computed value alongside the mock-call check, and a single real assertion correctly blocks firing (see E1/E2 above). The 11% is the rule correctly declining to fire on legitimate tests, not a coverage gap. Evasion is trivial and requires no adversarial intent: in a hand-written adversarial check against the equivalent pytest rule, 5 realistic vacuous write-path tests were constructed and the rule caught 0 of 5 — evasions included (1) a fixture-provided session/client bound to a variable name off the heuristic list, (2) the mock-call assertion wrapped inside a helper function rather than inlined, (3) a parametrized test using an unconventional session variable name, (4) a session obtained through an async context manager, and (5) a bare attribute-access truthiness check on a mock (e.g. expect(mockDb.commit.called).toBe(true) or the Python equivalent assert mock_db.commit.called) instead of a real matcher — which evaded every smell rule silently, not just SMELL-08. The same evasion shapes apply here: ordinary naming variance and normal helper-extraction refactors defeat this rule; treat SMELL-08 as advisory only. Never use a clean run as a blocking CI gate, and never treat it as evidence that a test file has no vacuous write-path tests.
Run via Bash (single file):
python .claude/skills/testing/jest-patterns/scripts/jest_smell.py path/to/example.test.ts
Run via Bash (directory — walks .test. / .spec. files recursively):
python .claude/skills/testing/jest-patterns/scripts/jest_smell.py src/
Run via Bash (stdin):
cat example.test.js | python .claude/skills/testing/jest-patterns/scripts/jest_smell.py -
Output fields (JSON):
{
"findings": [
{
"smell_id": "SMELL-01",
"name": "test_only",
"severity": "ERROR",
"message": ".only() found at line 5 — silently skips all other tests",
"file": "src/user.test.ts",
"line": 5,
"function": "<suite>"
}
],
"summary": {
"total": 2,
"error": 1,
"warn": 1,
"files_analyzed": 1
}
}
What the agent does with the output:
- Address all
ERRORseverity findings first — these are broken/useless tests. - Review
WARNseverity findings — remove debugging artifacts and flaky patterns. - Use
summary.errorcount when making a CI gate decision.
Error handling: Invalid file path → exits 1 with ERROR: message on stderr. Non-JS/TS file for a named argument → exits 1. Empty input → exits 0 with zero findings.