.claude/skills/learned/essential-test-design/SKILL.md
Write tests that verify observable behavior (contract), not implementation details. Auto-invoked when writing or reviewing tests.
npx skillsauth add growilabs/growi essential-test-designInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Tests that are tightly coupled to implementation details cause two failures:
setTimeout was called)setTimeout to a delay() utility, spy breaks)Both undermine the purpose of testing: detecting regressions in behavior.
A test is "essential" when it:
Ask: "What does the caller of this function experience?" — test that.
// BAD: Tests implementation, not behavior
// Breaks if implementation changes from setTimeout to any other delay mechanism
const spy = vi.spyOn(global, 'setTimeout');
await exponentialBackoff(1);
expect(spy).toHaveBeenCalledWith(expect.any(Function), 1000);
// BAD: The "arrange" is set up only to make the "assert" trivially pass
// This is a self-fulfilling prophecy, not a meaningful test
vi.advanceTimersByTime(1000);
await promise;
// No assertion — "it didn't throw" is not a valuable test
// GOOD: Tests the observable contract
// "Does not resolve before the expected delay, resolves at the expected delay"
let resolved = false;
mailService.exponentialBackoff(1).then(() => { resolved = true });
await vi.advanceTimersByTimeAsync(999);
expect(resolved).toBe(false); // Catches: delay too short
await vi.advanceTimersByTimeAsync(1);
expect(resolved).toBe(true); // Catches: delay too long or hangs
When writing a test, ask these questions in order:
setTimeout to Bun.sleep() shouldn't break the testexpect(resolved).toBe(false) at 999ms would catch itUse fake timers + boundary assertions (as shown above).
Assert on output shape/values, not on which internal helper was called.
// BAD
const spy = vi.spyOn(utils, 'formatDate');
transform(input);
expect(spy).toHaveBeenCalled();
// GOOD
const result = transform(input);
expect(result.date).toBe('2026-01-01');
Mocking the boundary (API/DB) is acceptable — that IS the observable behavior.
// OK: The contract IS "sends an email via mailer"
expect(mockMailer.sendMail).toHaveBeenCalledWith(
expect.objectContaining({ to: '[email protected]' })
);
Test the number of attempts and the final outcome, not the internal flow.
// GOOD: Contract = "retries N times, then fails with specific error"
mockMailer.sendMail.mockRejectedValue(new Error('fail'));
await expect(sendWithRetry(config, 3)).rejects.toThrow('failed after 3 attempts');
expect(mockMailer.sendMail).toHaveBeenCalledTimes(3);
tools
GROWI apps/app Turbopack configuration, module optimization, and build measurement tooling. Auto-invoked when working in apps/app.
development
Vendor CSS precompilation system for Turbopack compatibility. How to add third-party CSS to components without violating Pages Router global CSS restriction. Auto-invoked when working in apps/app.
testing
Auto-invoked when modifying origin-based conflict detection, revision validation logic, or isUpdatable() method. Explains the two-stage origin check mechanism for conflict detection and its separation from diff detection.
testing
Fix broken symlinks in .next/node_modules/ — diagnose, decide allowlist vs dependencies, and verify