running-tests

running-tests is a cursor rule for Cursor from prisma/orm. It costs 893 tokens per session, scanned A, original, Apache-2.0.

A testing guide for running suites, finding failures, and rerunning selected tests in a multi-package project.

In plain words
What is it for?
Use it to run unit, integration, and end-to-end tests, build packages, check types, and investigate failed runs.
Why use it?
It keeps slow commands from hanging indefinitely and preserves complete logs and exit statuses for later inspection.

Cursor rule for Cursor ✓ vendor

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

Good fit Use it to run unit, integration, and end-to-end tests, build packages, check…

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/prisma/orm/running-tests
About the project

Prisma ORM is a Node.js and TypeScript database toolkit that lets applications work with databases through a programming interface instead of writing every query directly in SQL. Developers use it with databases including PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB, and CockroachDB. The catalogue add-ons provide agent rules, skills, hooks, agents, and other workflows for using Prisma.

prisma/orm · 47,606 stars · on GitHub · prisma.io

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/orm

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 running-tests

README.md
[![agentmods](https://agentmods.dev/badge/rules/prisma/orm/running-tests.svg)](https://agentmods.dev/rules/prisma/orm/running-tests)
Your own site
<a href="https://agentmods.dev/rules/prisma/orm/running-tests"><img src="https://agentmods.dev/badge/rules/prisma/orm/running-tests.svg" alt="Measured on agentmods" height="20"></a>
Per session 893 This file is loaded in full into every session.
When invoked 893 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.00893 $0.00893
Opus 5 $0.00447 $0.00447
Sonnet 5 $0.00179 $0.00179
Haiku 4.5 $0.00089 $0.00089

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

Security

Grade A, and why

running-tests 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

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/rules/running-tests.mdc · 76 lines

How it starts

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

How to run tests, check for failures, and get specific failures

1. Run a test suite

Each slow command has an :agent variant. The first line of its output prints the exact log path:

$ pnpm test:packages:agent
log: wip/test-packages.20260615-190441.32317.log

The full output goes to that file. The exit code is written to a sibling .exit file (same path with .log.exit). Use the path printed by the command — don't guess one. Every run gets its own timestamped path, so history is preserved automatically. Contents of wip/ are gitignored.

Each :agent run has a hard timeout (default 5 minutes, override with AGENT_CMD_TIMEOUT_SECONDS — bump it for a legitimately long suite). If the run hangs — e.g. vitest freezes after printing its summary — the child process group is killed and the .exit file records 124 rather than blocking forever.

Command Purpose
pnpm test:packages:agent Unit tests for every package
pnpm test:integration:agent Integration suite (PGlite + mongodb-memory-server)
pnpm test:e2e:agent End-to-end suite
pnpm build:agent Build every package (turbo)
pnpm typecheck:agent Typecheck every package (turbo, cached)
pnpm lint:agent Biome lint
pnpm lint:deps:agent Dependency-layering check
pnpm fixtures:check:agent Regenerate fixtures and diff them

2. Run one package's tests

pnpm --filter @internal/cli test

Runs only that package's own test script — seconds, not minutes. Output goes to your terminal; no capture needed.

3. Rerun a specific failing test

By file:

pnpm --filter @internal/cli test test/commands/migration-list-json-golden.test.ts

By test name within a file (vitest's -t filter):

pnpm --filter @internal/cli test test/commands/migration-list-json-golden.test.ts -t "pins head ref decoration"

4. Find specific failures in the captured output

Use the log path the :agent command printed (the shell exit status tells you pass/fail; the .exit sibling file records the same number). If non-zero, list failing files and assertions:

Read the full file on GitHub · 76 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 · 76 lines · 893 tokens per session scan A 8ec2e74d6d48

Subscribe to this mod's changes

running-tests is a cursor rule published in the GitHub repository prisma/orm (47,606 stars, last pushed 4d ago), licensed Apache-2.0. It adds 893 tokens to every session, about $0.0045 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.