posthog/writing-tests
> Gates whether a new test should exist and forces it to be efficient, protecting CI from low-value test bloat. Use before adding or substantially changing any pytest, Jest, or Playwright test — whenever an agent or engineer is about to write tests for a new feature, bugfix, or PR. Front-loads the value bar (every test must catch a realistic regression no existing test already catches; test behavior through the public interface, not implementation details; collapse near-duplicates into parameterized cases) and the efficiency bar (deterministic, isolated, fast; pick the cheapest test level; Django TestCase over TransactionTestCase; no sleeps, no real network). Includes a "don't write it" decision tree. For fixing an existing flaky test use `/fixing-flaky-tests`; after this gate says a Playwright test is warranted, use `/playwright-test` for mechanics.
npx skills add https://github.com/PostHog/posthog --skill writing-tests
The rationale and the same rules in human-facing form live in the handbook: Backend coding conventions › Testing (docs/published/handbook/engineering/conventions/backend-coding.md).
This skill is the operational gate — run it before writing tests. It carries the decision procedure plus a catalog of the bug shapes we actually ship.
Before writing any test, answer in one sentence:
> What realistic regression does this test catch that no existing test already catches?
If you can't answer it concretely — name the bug, the code path, the input that would break — do not write the test.
"Increases coverage", "good practice", and "the function exists" are not answers.
A good answer sounds like: _"if someone makes parse_filters drop the team_id clause, this fails"_ or _"empty-cohort input used to 500; this locks in the 400."_
That is a test worth keeping.
Aim each test at a failure mode we actually hit, not a hypothetical.
The bugs PostHog ships and reverts cluster into a handful of shapes — cataloged with the test that catches each, and the failure modes no unit test should, in references/mistakes-we-make.md.
If your test doesn't map to one of them, be skeptical it's worth keeping.
Most low-value tests fall into one of these. Recognize and skip them.
Don't test getters, setters, constants, dataclass field assignment, that Django saved a row, that DRF serialized a field, or that a library does what its docs say.
You're testing someone else's code, not yours.
A test that just mirrors the implementation — asserting which private methods were called, in what order, with mocks wired to match the current code — fails on every refactor and catches no real bug.
Test _observable behavior through the public interface_ (return value, persisted state, emitted event, HTTP response), not the choreography that produces it.
See Change-Detector Tests Considered Harmful and Prefer Testing Public APIs.
Ten tests that exercise the same path with different data are one parameterized test.
If a new test is a variation of an existing one, it's a @parameterized case (Python) or a test.each row (Jest) — not a new test function.
AI-generated suites bloat here first: hundreds of near-identical cases turning a 30s suite into 3 minutes.
Don't add tests to hit a number; an uncovered line is information, not a defect.
If the only reason to test a branch is the coverage report, the branch probably doesn't need a test — or the code is dead and should be deleted instead.
Never read or regex-parse one language's source from another language's test — a Python test that Path(...).read_text()s a .ts file and matches category: '...', a TS test that greps a .py file, and so on.
It couples two trees through a brittle string match that breaks on edits that change nothing about behavior (a rename, a reformat, a moved file, a comment), and it proves nothing about runtime — the two sides never actually run together in the test.
If two sides genuinely must agree on a set of values, give them one source of truth — a generated artifact or a checked-in data file both import — and assert against that. Otherwise let the drift surface where the two sides really meet (an API contract test, a rendered output, a round-trip), not by scraping the other language's source for strings.
When the answer is "don't write it," the right move is often to extend an existing test (add a parameterized case) or delete code rather than test it.
Both shrink the suite's surface.
A test that earns its place still has to be cheap.
Cost is a ladder; each rung is roughly an order of magnitude slower and flakier than the one below:
pure function / unit → kea logic test → Django TestCase → ClickHouse-backed test → Playwright e2e
cheapest most expensive
The goal is a ratio, not a cap: many tests at the bottom, very few at the top.
A thousand pure unit tests are cheaper and more reliable than ten that boot Django, which are cheaper than one Playwright run.
Want more coverage? Add it at the bottom.
When something is hard to test cheaply, that's a design signal — extract, don't escalate.
If the only way to exercise your logic is to stand up a database, a request, and a render, the logic is tangled with its dependencies.
Pull it into a pure function or a kea logic and test _that_ directly: you get a faster test and better-factored code at once.
Escalating to the next rung is the last resort, not the default.
logic.actions / logic.values), not a full component render, whenever the behavior lives in the logic.A render() + DOM-query test is for things only the DOM can show.
TestCase, not TransactionTestCase, unless you truly need it.TransactionTestCase flushes the DB between tests instead of rolling back a transaction — dramatically slower, and a common source of cross-test interference.
It's a Postgres-isolation choice, orthogonal to which datastore you touch: a ClickHouse-backed test is still a plain TestCase (ClickhouseTestMixin sets ClickHouse up), so reaching ClickHouse is not a reason to switch.
Common cases that people reach for TransactionTestCase to solve usually have cheaper alternatives:
transaction.on_commit side effects → use TestCase + self.captureOnCommitCallbacks(execute=True).thread_sensitive) → async_to_sync(...), not asyncio.run(...).Use TransactionTestCase only when the regression genuinely requires committed transaction boundaries that TestCase hides.
SimpleTestCase, not an APIBaseTest round-trip.A test that posts a malformed body to an endpoint and asserts a 400 pays for APIBaseTest to build an Organization + Team + User in Postgres and wrap the test in a transaction — just to exercise validation that runs entirely in memory.
DRF field validators (required, type coercion, choices, min/max, regex) and validate_<field> methods run inside Serializer(data=...).is_valid() with no database and no request: field-level validation happens in to_internal_value, _before_ the object-level validate() that typically needs self.context. So an invalid-field case never reaches the DB-touching code.
Test the serializer directly and assert on .errors:
class TestTeamValidation(SimpleTestCase): # no DB — not APIBaseTest
def test_sample_rate_too_many_digits(self) -> None:
s = TeamSerializer(data={"session_recording_sample_rate": "30001"}, partial=True)
assert not s.is_valid()
assert s.errors["session_recording_sample_rate"][0].code == "max_digits"
When you push the case matrix down to the serializer, keep (or add) one DB-backed endpoint test as a wiring guard — that the viewset actually invokes this serializer, so a bad request is rejected with a 400. The no-DB serializer test proves the validation logic; it does _not_ prove the viewset is wired to that serializer (a refactor that drops the serializer_class, skips is_valid(), or stops calling is_valid(raise_exception=True) would pass every SimpleTestCase and still ship a broken endpoint). One endpoint case closes that gap; the matrix stays in the SimpleTestCase. For a query serializer instantiated inline (e.g. Serializer(data=request.query_params).is_valid(raise_exception=True)), the wiring guard is a bad-query-param → 400 assertion.
Two more caveats. First, .errors carries DRF's _raw_ code (invalid, max_digits); the {"attr", "code", "detail", "type"} HTTP envelope is rendered later by exceptions-hog (which maps invalid → invalid_input) — that rendering is framework behavior, so don't re-assert it per case (the wiring-guard test covers the envelope once). Second, validation that genuinely needs the DB stays at the endpoint — uniqueness checks, PrimaryKeyRelatedField queryset lookups, related-object existence, permission/team scoping, password-hash checks. Don't force those into a SimpleTestCase.
parameterized library — don't copy-paste test bodies.Don't mock your own internal helpers (that's how change-detector tests are born).
posthog/test/persons.py (create_person, create_group, create_group_type_mapping, add_cohort_members, etc.) — never Person.objects.create() or similar ORM calls directly.See posthog/test/AGENTS.md for the full API reference and rationale.
describe block per file (house rule).test.each for variations rather than copied test bodies.*ByRole(..., { name: ... }) on components that render a large DOM (calendars, the taxonomic filter, whole scenes).Role queries walk every element running getComputedStyle-based checks and accessible-name computation — seconds per query in jsdom, multiplied by every waitFor/findBy* retry; this pattern has produced single tests with 40s p95 in CI.
Prefer getByText, getByTestId/data-attr selectors, or getByLabelText; scope with within(<small container>) if a role query is genuinely needed.
The jest-no-byrole-name-queries semgrep rule flags this.
A snapshot over a large rendered tree or serialized blob is a change-detector test that bloats the repo and breaks on every unrelated change.
Snapshot a small, intentional value, or assert specific fields instead.
time.sleep / arbitrary waits.Use fake timers, wait_for / waitFor on a real condition, or freeze_time.
A sleep is a flake waiting to happen, and it slows every run.
Tests must pass in any order and in isolation; don't rely on state a previous test left behind.
@skip / xfail / .skip without a one-line reason and a linked issue.A permanently-skipped test is dead weight — delete it or fix it.
.only (it.only / describe.only).It doesn't skip one test, it skips every _other_ test in the file — turning the suite green on a sliver.
The PR template prompts for this under "How did you test this code?" — state the justification where a reviewer will see it.
One line per group of tests is enough:
> _"Added 3 cases to test_cohort_query covering empty / single / oversized cohorts — guards the 500 we just fixed; couldn't extend an existing test because none exercised the empty path."_
If you can't write that line, you've found a test that shouldn't be in the PR.
/fixing-flaky-tests (reproduce, root-cause, validate). Use this skill too only if the fix adds or substantially changes coverage.That skill applies the gate above retroactively: a flaky test has already proven its cost, so if you can't name the regression it catches, deleting it is a valid outcome there — not just a stabilization job.
/playwright-test for the mechanics.Take posthog/writing-tests from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.