What problem does it solve? Writing reliable tests in a T3 Turbo monorepo is hard: teams mock away the database and prove nothing, E2E runs silently fall back to localhost or hit production, shared auth state causes flakes, and retry-passes get counted as clean evidence. This Skill encodes enforceable standards for unit, integration, and Playwright E2E testing so runs are deterministic, isolated, and auditable. ## Core Features & Use Cases - Unit and integration rules: Use a real migrated Postgres for Drizzle/tRPC tests via createCaller and typed context builders, with narrow typed provider fakes instead of SDK mocks. - Fail-closed E2E target validation: Enforce exact test:e2e/test:e2e:local commands, a private short-lived run capability binding mode, URL, and non-production identities, and a strict canonical/local/CI/collection mode matrix. - Fixtures, personas, and mutation ownership: Isolated persona storage state with 0700/0600 permissions, server-derived mutation ownership, authorize-before-update/delete, and child-first cleanup with escaped-record checks. - Topology and evidence: Exact Chromium completeness collection, native sharding with setup-once --no-deps, quarantine metadata, retry/flake classification, artifact secret scanning, and worker benchmark gates. - Use Case: A CI job proposes fullyParallel: true with eight workers on a mutation-heavy suite sharing an admin storageState. The Skill requires serial one-worker defaults until narrow ownership, isolated personas, clean cleanup, and two adjacent clean benchmark runs prove concurrency is safe. ## Quick Start Ask the agent to review your Playwright E2E configuration and test suite against these T3 testing standards before enabling parallelism or adding a CI lane.