vm0-ai/vm0 · Archived

testing

Comprehensive testing patterns and anti-patterns for writing and reviewing tests

First seen Jul 30, 2026

Installation

$ npx skills add vm0-ai/vm0 --skill testing

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

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 vm0-ai/vm0.

npx skills add vm0-ai/vm0

Browse all from vm0-ai/vm0

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 1.1K
License LICENSE
Default branch main
Open issues 68
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,832 B
  • docs SUMMARY.md 95 B

History

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

SKILL.md

Testing Skill

Use this skill when writing tests, reviewing test code, or investigating test failures.

Documentation

Read the testing guide and relevant reference based on context:

Context Primary Reference
General [docs/testing.md](../../../docs/testing.md) —
Anti-patterns [docs/testing.md](../../../docs/testing.md) [anti-patterns.md](../../../docs/testing/anti-patterns.md)
Patterns [docs/testing.md](../../../docs/testing.md) [patterns.md](../../../docs/testing/patterns.md)
CLI (turbo/apps/cli) [docs/testing.md](../../../docs/testing.md) [cli-testing.md](../../../docs/testing/cli-testing.md)
CLI E2E (e2e/tests/) [docs/testing.md](../../../docs/testing.md) [cli-e2e-testing.md](../../../docs/testing/cli-e2e-testing.md)
API (turbo/apps/api) [docs/testing.md](../../../docs/testing.md) [api-testing.md](../../../docs/testing/api-testing.md)
App (turbo/apps/platform) [docs/testing.md](../../../docs/testing.md) [app-testing.md](../../../docs/testing/app-testing.md)
Rust (crates/) [docs/testing.md](../../../docs/testing.md) [rust-testing.md](../../../docs/testing/rust-testing.md)
Python addon (crates/runner/mitm-addon) [docs/testing.md](../../../docs/testing.md) [mitm-addon-testing.md](../../../docs/testing/mitm-addon-testing.md)

Key Principles

  1. Integration tests are primary — test at system entry points
  2. Mock at the boundary — only mock external services, not internal code
  3. Use real infrastructure — real database, real filesystem (temp dirs)
  4. Test behavior, not implementation — verify outcomes, not mock calls