paulrberg/dot-agents

vitest

"Use for Vitest in TypeScript projects (Node, bun, React/Next.js, Effect): write, run, or debug unit/component tests, mocks, testing utilities, and coverage."

First seen Mar 1, 2026

Installation

$ npx skills add paulrberg/dot-agents --skill vitest

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from paulrberg/dot-agents · top by installs.

npx skills add paulrberg/dot-agents

Browse all from paulrberg/dot-agents

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 6
License LICENSE
Default branch main
Open issues 5
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,888 B
  • docs SUMMARY.md 170 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 10 installs

SKILL.md

Vitest

Follow the repository's Vitest configuration and test conventions before introducing generic patterns.

Workflow

  1. Inspect package scripts, Vitest config/projects, setup files, neighboring tests, path aliases, environment selection,

and repository instructions.

  1. Define the behavior or regression the test must prove. Prefer public behavior and observable outcomes over

implementation details.

  1. Match local file placement, naming, imports/globals, fixtures, cleanup, DOM utilities, and assertion style. Do not

enable globals, jsdom, coverage, or new setup merely because they are common defaults.

  1. Load conditional guidance only when needed:

- components, async behavior, snapshots, type tests, tables, fixtures, tags: [references/testing-patterns.md](references/testing-patterns.md); - spies, module mocks, timers, environment stubs: [references/mocking.md](references/mocking.md); - config, projects, environments, coverage, reporters, v4 migration: [references/configuration.md](references/configuration.md); - timeouts, flaky tests, mock failures, resolution errors: [references/troubleshooting.md](references/troubleshooting.md).

  1. Run the narrowest established command for the changed file or test name, then the affected package suite when shared

setup or contracts changed. Use nlx vitest run ... only when the repository has no preferred recipe/script. Prefer --reporter=agent on Vitest 4.1+ for minimal agent-friendly output when the repository has no reporter convention.

Defaults

  • Colocate tests when the repository does.
  • Restore mocks, timers, environment, and mutable shared state using the local cleanup convention.
  • Mock system boundaries, not the behavior under test.
  • Add coverage configuration only when coverage is the requested outcome.
  • Do not use jest-dom matchers unless setup imports @testing-library/jest-dom.
  • In Effect-TS repositories, follow @effect/vitest conventions (it.effect, Layers, TestClock) instead of generic

patterns.

  • For a bug fix, reproduce the failure before relying on the passing result when practical.

Completion requires a focused test that meaningfully exercises the requested behavior and passes under the repository's configuration. For a bug with observed red-before-green evidence, finish with ### 🧪 Regression covered; otherwise use ### 🧪 Tests verified. Include a phase/command/result table with only the phases actually run. Report mock, timer, environment, or shared-state cleanup only when the checks provide that evidence. Keep reporter output, snapshots, assertions, failure text, commands, and diagnostics exact and undecorated.