tech-vitest
Vitest Testing Framework
Fast, Vite-powered testing framework with Jest-compatible API and native ESM. Vitest excels at:
- Watch mode — Instant feedback during development with smart file watching
- Native TypeScript/JSX — Compiled by Vite, no extra setup
- Mocking ecosystem —
vi.mock()for modules, MSW v2 for HTTP requests, fake timers for time-dependent code - Snapshot testing — Auto-managed snapshots with inline snapshot support
- Concurrent tests — Parallel test execution with proper isolation
Core challenge: test isolation. Vitest's hoisting rules for vi.mock() require vi.hoisted() for shared mock state. MSW v2 changes handler APIs. Snapshot updates must be intentional.
Workflow
When setting up tests or adding test cases:
- Identify scope — What behavior? (unit/integration/e2e?)
- Determine dependencies — HTTP? Timers? Other modules?
- Choose strategy —
vi.mock()with hoisting for modules, MSW for HTTP, fake timers for time - Hoist shared state — Use
vi.hoisted()if mocks need variables from test scope - Set up handlers — MSW server in
beforeAll(), reset inafterEach() - Assert & snapshot — Use matchers; snapshot only stable outputs
- Validate —
vitest --watchwith coverage checks
Rules
Tests are organized by concern:
- Mocking Modules —
vi.mock(),vi.hoisted(), partial mocking withimportOriginal - Mocking Functions —
vi.fn()with return values, implementations, and call tracking - Spying on Methods —
vi.spyOn()to watch object methods without replacing - Mocking HTTP — MSW v2 handlers,
setupServer(), per-test overrides - Fake Timers —
vi.useFakeTimers(),vi.setSystemTime(), timer advancement - Snapshots —
toMatchSnapshot(), inline snapshots, edge cases - Assertions — Choosing matchers for your test assertions
- Hooks & Setup —
beforeEach,afterEach, fixtures, setup files
See rules/ for implementation patterns and examples.
Examples
Positive Trigger
User: "Mock the API client in this Vitest test so it returns a fake response."
Expected behavior: Use tech-vitest guidance, apply vi.mock() with hoisting rules and MSW patterns.
Non-Trigger
User: "Set up a PostgreSQL database schema for user accounts."
Expected behavior: Do not prioritize tech-vitest; choose a more relevant skill or proceed without it.
-
Error: Placing
vi.mock()inside a condition -
Cause:
vi.mock()is hoisted; conditions are ignored, leading to unexpected module state -
Solution: Move mocks to file top; use
vi.hoisted()for conditional mock state -
Error: Updating snapshots without reviewing changes
-
Cause: Snapshots bypass assertions; unexpected changes hide bugs
-
Solution: Always review diffs in
--uimode before accepting with-u
Troubleshooting
-
Error:
Cannot access 'mockData' before initialization -
Cause: Variables defined outside
vi.mock()are not accessible in the factory (hoisting) -
Solution: Wrap in
vi.hoisted()to define shared mock state at the top level -
Error: Mock handler never invoked; real HTTP request fires
-
Cause: MSW server not started or wrong handler method (http vs graphql)
-
Solution: Call
server.listen()inbeforeAll(); check handler verb matches request -
Error: Test passes locally but fails in CI
-
Cause: Fake timers not reset between tests; time drifts across suite
-
Solution: Call
vi.useRealTimers()inafterEach()without fail
More from ravnhq/ai-toolkit
promptify
Transform user requests into detailed, precise prompts for AI models.
65lang-typescript
TypeScript language patterns and type safety rules — strict mode, no
52tech-react
React 19 patterns for components, hooks, Server Components, and data
51design-frontend
Visual design system patterns for web UIs. Tailwind CSS v4 design tokens
42platform-backend
Server-side architecture and security — API design, error handling, validation,
39platform-frontend
Framework-agnostic frontend architecture — state management, components,
37