Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when writing or changing tests, adding mocks, or tempted to add test-only methods to production code - prevents testing mock behavior, production pollution with test-only methods, and mocking without understanding dependencies
.claude/skills/microck-testing-anti-patterns/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | 45% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 111% | 0% |
| case-16 | ✗→✓ | ▲ Improved | 66% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 106% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 96% | 0% |
Tests must verify real behavior, not mock behavior. Mocks are a means to isolate, not the thing being tested.
Core principle: Test what the code does, not what the mocks do.
Following strict TDD prevents these anti-patterns.
1. NEVER test mock behavior
2. NEVER add test-only methods to production classes
3. NEVER mock without understanding dependenciesThe violation:
typescript// ❌ BAD: Testing that the mock exists test('renders sidebar', () => { render(<Page />); expect(screen.getByTestId('sidebar-mock')).toBeInTheDocument(); });
Why this is wrong:
your human partner's correction: "Are we testing the behavior of a mock?"
The fix:
typescript// ✅ GOOD: Test real component or don't mock it test('renders sidebar', () => { render(<Page />); // Don't mock sidebar expect(screen.getByRole('navigation')).toBeInTheDocument(); }); // OR if sidebar must be mocked for isolation: // Don't assert on the mock - test Page's behavior with sidebar present
BEFORE asserting on any mock element:
Ask: "Am I testing real component behavior or just mock existence?"
IF testing mock existence:
STOP - Delete the assertion or unmock the component
Test real behavior insteadThe violation:
typescript// ❌ BAD: destroy() only used in tests class Session { async destroy() { // Looks like production API! await this._workspaceManager?.destroyWorkspace(this.id); // ... cleanup } } // In tests afterEach(() => session.destroy());
Why this is wrong:
The fix:
typescript// ✅ GOOD: Test utilities handle test cleanup // Session has no destroy() - it's stateless in production // In test-utils/ export async function cleanupSession(session: Session) { const workspace = session.getWorkspaceInfo(); if (workspace) { await workspaceManager.destroyWorkspace(workspace.id); } } // In tests afterEach(() => cleanupSession(session));
BEFORE adding any method to production class:
Ask: "Is this only used by tests?"
IF yes:
STOP - Don't add it
Put it in test utilities instead
Ask: "Does this class own this resource's lifecycle?"
IF no:
STOP - Wrong class for this methodThe violation:
typescript// ❌ BAD: Mock breaks test logic test('detects duplicate server', () => { // Mock prevents config write that test depends on! vi.mock('ToolCatalog', () => ({ discoverAndCacheTools: vi.fn().mockResolvedValue(undefined) })); await addServer(config); await addServer(config); // Should throw - but won't! });
Why this is wrong:
The fix:
typescript// ✅ GOOD: Mock at correct level test('detects duplicate server', () => { // Mock the slow part, preserve behavior test needs vi.mock('MCPServerManager'); // Just mock slow server startup await addServer(config); // Config written await addServer(config); // Duplicate detected ✓ });
BEFORE mocking any method:
STOP - Don't mock yet
1. Ask: "What side effects does the real method have?"
2. Ask: "Does this test depend on any of those side effects?"
3. Ask: "Do I fully understand what this test needs?"
IF depends on side effects:
Mock at lower level (the actual slow/external operation)
OR use test doubles that preserve necessary behavior
NOT the high-level method the test depends on
IF unsure what test depends on:
Run test with real implementation FIRST
Observe what actually needs to happen
THEN add minimal mocking at the right level
Red flags:
- "I'll mock this to be safe"
- "This might be slow, better mock it"
- Mocking without understanding the dependency chainThe violation:
typescript// ❌ BAD: Partial mock - only fields you think you need const mockResponse = { status: 'success', data: { userId: '123', name: 'Alice' } // Missing: metadata that downstream code uses }; // Later: breaks when code accesses response.metadata.requestId
Why this is wrong:
The Iron Rule: Mock the COMPLETE data structure as it exists in reality, not just fields your immediate test uses.
The fix:
typescript// ✅ GOOD: Mirror real API completeness const mockResponse = { status: 'success', data: { userId: '123', name: 'Alice' }, metadata: { requestId: 'req-789', timestamp: 1234567890 } // All fields real API returns };
BEFORE creating mock responses:
Check: "What fields does the real API response contain?"
Actions:
1. Examine actual API response from docs/examples
2. Include ALL fields system might consume downstream
3. Verify mock matches real response schema completely
Critical:
If you're creating a mock, you must understand the ENTIRE structure
Partial mocks fail silently when code depends on omitted fields
If uncertain: Include all documented fieldsThe violation:
✅ Implementation complete
❌ No tests written
"Ready for testing"Why this is wrong:
The fix:
TDD cycle:
1. Write failing test
2. Implement to pass
3. Refactor
4. THEN claim completeWarning signs:
your human partner's question: "Do we need to be using a mock here?"
Consider: Integration tests with real components often simpler than complex mocks
Why TDD helps:
If you're testing mock behavior, you violated TDD - you added mocks without watching test fail against real code first.
| Anti-Pattern | Fix | |--------------|-----| | Assert on mock elements | Test real component or unmock it | | Test-only methods in production | Move to test utilities | | Mock without understanding | Understand dependencies first, mock minimally | | Incomplete mocks | Mirror real API completely | | Tests as afterthought | TDD - tests first | | Over-complex mocks | Consider integration tests |
*-mock test IDsMocks are tools to isolate, not things to test.
If TDD reveals you're testing mock behavior, you've gone wrong.
Fix: Test real behavior or question why you're mocking at all.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | pass→pass | 9,968 | 8,580 | -14% | 1 | 1 | 0% | 1,793 | 3,519 | +96% | 0 | 0 | — |
case-02 | fail→pass | 11,217 | 6,167 | -45% | 1 | 1 | 0% | 2,049 | 2,967 | +45% | 0 | 0 | — |
case-03 | fail→pass | 9,650 | 8,394 | -13% | 1 | 1 | 0% | 1,633 | 3,449 | +111% | 0 | 0 | — |
case-04 | pass→pass | 11,665 | 5,042 | -57% | 1 | 1 | 0% | 2,127 | 3,002 | +41% | 0 | 0 | — |
case-05 | pass→pass | 12,463 | 6,179 | -50% | 1 | 1 | 0% | 1,812 | 3,041 | +68% | 0 | 0 | — |
case-06 | pass→pass | 12,688 | 10,933 | -14% | 1 | 1 | 0% | 2,130 | 3,915 | +84% | 0 | 0 | — |
case-07 | pass→pass | 9,764 | 4,960 | -49% | 1 | 1 | 0% | 1,626 | 3,000 | +85% | 0 | 0 | — |
case-08 | pass→pass | 11,026 | 4,632 | -58% | 1 | 1 | 0% | 1,828 | 2,883 | +58% | 0 | 0 | — |
case-09 | pass→pass | 11,546 | 6,185 | -46% | 1 | 1 | 0% | 1,962 | 3,124 | +59% | 0 | 0 | — |
case-10 | pass→pass | 9,090 | 6,004 | -34% | 1 | 1 | 0% | 1,623 | 3,104 | +91% | 0 | 0 | — |
case-11 | pass→pass | 11,714 | 5,842 | -50% | 1 | 1 | 0% | 1,924 | 3,130 | +63% | 0 | 0 | — |
case-12 | pass→pass | 8,856 | 5,989 | -32% | 1 | 1 | 0% | 1,556 | 3,024 | +94% | 0 | 0 | — |
case-13 | pass→pass | 11,064 | 8,170 | -26% | 1 | 1 | 0% | 1,864 | 3,370 | +81% | 0 | 0 | — |
case-14 | pass→pass | 11,936 | 8,154 | -32% | 1 | 1 | 0% | 2,047 | 3,458 | +69% | 0 | 0 | — |
case-15 | pass→pass | 8,408 | 6,161 | -27% | 1 | 1 | 0% | 1,532 | 3,152 | +106% | 0 | 0 | — |
case-16 | fail→pass | 13,589 | 9,014 | -34% | 1 | 1 | 0% | 2,145 | 3,551 | +66% | 0 | 0 | — |
case-17 | pass→pass | 13,320 | 9,137 | -31% | 1 | 1 | 0% | 2,159 | 3,470 | +61% | 0 | 0 | — |
case-18 | pass→pass | 10,543 | 7,346 | -30% | 1 | 1 | 0% | 1,568 | 3,218 | +105% | 0 | 0 | — |
case-19 | fail→pass | 8,957 | 4,598 | -49% | 1 | 1 | 0% | 1,404 | 2,897 | +106% | 0 | 0 | — |
case-20 | pass→pass | 7,450 | 6,872 | -8% | 1 | 1 | 0% | 1,437 | 3,373 | +135% | 0 | 0 | — |
case-21 | pass→pass | 4,763 | 5,112 | +7% | 1 | 1 | 0% | 992 | 3,254 | +228% | 0 | 0 | — |
case-22 | pass→pass | 5,073 | 3,653 | -28% | 1 | 1 | 0% | 947 | 2,782 | +194% | 0 | 0 | — |
case-23 | pass→pass | 3,898 | 3,089 | -21% | 1 | 1 | 0% | 732 | 2,680 | +266% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +17 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.