test-file-organization

test-file-organization is a cursor rule for Cursor from prisma/prisma-next. It costs 0 tokens per session (1,011 once invoked), scanned A, a copy of test-file-organization, Apache-2.0.

A set of rules for organizing test files by size, purpose, feature area, or test type.

In plain words
What is it for?
It helps decide when to split a test file, how to group its tests, and how to name the resulting files.
Why use it?
It keeps large or mixed test files readable and makes related tests easier to find without splitting them arbitrarily.

Cursor rule for Cursor ✓ vendor

Written for Cursor: a Cursor rule (.mdc). Also seen: installed under .agents/ (shared by several agents).

Good fit It helps decide when to split a test file, how to group its tests, and how to name the resulting files.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/prisma/prisma-next/test-file-organization
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/prisma/prisma-next

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for test-file-organization

README.md
[![agentmods](https://agentmods.dev/badge/rules/prisma/prisma-next/test-file-organization.svg)](https://agentmods.dev/rules/prisma/prisma-next/test-file-organization)
Your own site
<a href="https://agentmods.dev/rules/prisma/prisma-next/test-file-organization"><img src="https://agentmods.dev/badge/rules/prisma/prisma-next/test-file-organization.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,011 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01011
Opus 5 $0.00000 $0.00505
Sonnet 5 $0.00000 $0.00202
Haiku 4.5 $0.00000 $0.00101

Measured 3d ago against content hash 9de234e65f37, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

test-file-organization scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

97% identical to test-file-organization — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/rules/test-file-organization.mdc · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test File Organization

File Size Limit

Maximum file size: 500 lines. Keep test files under 500 lines for readability and navigability; split when a file exceeds it.

Splitting Strategy

When to split: the file exceeds 500 lines, contains multiple distinct concerns that separate logically, or has multiple top-level describe blocks splittable by functionality.

How to split:

  • Identify logical groupings — by functionality (basic, errors, structure, generation), feature area (joins, projections, includes), or test type (unit, integration, edge-cases). Integration tests that depend on multiple packages belong in @prisma-next/integration-tests to avoid cyclic dependencies (e.g. tests using both sql-contract-ts and sql-query).
  • Use descriptive names — suffix by category (.basic.test.ts, .errors.test.ts, .structure.test.ts), prefix by feature area (runtime.joins.test.ts), keep the base name consistent (codecs.registry.test.ts, codecs.encoding.test.ts).
  • Split at natural boundaries — by describe block (distinct concerns), test category (basic vs advanced, success vs error), or feature area. Never split arbitrarily by line count (codecs.part1.test.ts, part2…) — that makes related tests hard to find.
  • Ensure each file is complete — all necessary imports and setup/teardown, independently runnable.
// ✅ Split by functionality
// codecs.registry.test.ts
describe('codec registry', () => { it('registers codec', () => {}); it('gets codec by id', () => {}); });
// codecs.encoding.test.ts
describe('codec encoding', () => { it('encodes string value', () => {}); it('handles null values', () => {}); });

// ✅ Split by feature area
// runtime.joins.test.ts
describe('runtime joins', () => { it('executes inner join', () => {}); it('executes left join', () => {}); });
// runtime.projections.test.ts
describe('runtime projections', () => { it('executes nested projection', () => {}); });

Read the full file on GitHub · 97 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 97 lines · 0 tokens per session scan A 9de234e65f37

Subscribe to this mod's changes

test-file-organization is a cursor rule published in the GitHub repository prisma/prisma-next (418 stars, last pushed 13d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,011 tokens. A static security scan graded it A with 0 findings. It is 97% identical to test-file-organization, differing in 2 lines, and is treated as a copy.