Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars4
LicenseLICENSE
Default branchmaster
Open issues0
Status
Active
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md5,084 B
docsAGENTS.md9,672 B
docsSUMMARY.md349 B
History
First seen on skills.sh
First recorded snapshot · 87 installs
SKILL.md
Vitest Best Practices
Comprehensive performance optimization and best practices guide for Vitest testing framework. Contains 44 rules across 8 categories, prioritized by impact to guide test writing, refactoring, and code review.
When to Apply
Reference these guidelines when:
Writing new Vitest tests
Debugging flaky or slow tests
Setting up test configuration
Reviewing test code in PRs
Migrating from Jest to Vitest
Optimizing CI/CD test performance
Rule Categories by Priority
Priority
Category
Impact
Prefix
1
Async Patterns
CRITICAL
async-
2
Test Setup & Isolation
CRITICAL
setup-
3
Mocking Patterns
HIGH
mock-
4
Performance
HIGH
perf-
5
Snapshot Testing
MEDIUM
snap-
6
Environment
MEDIUM
env-
7
Assertions
LOW-MEDIUM
assert-
8
Test Organization
LOW
org-
Quick Reference
1. Async Patterns (CRITICAL)
async-await-assertions - Await async assertions to prevent false positives
async-return-promises - Return promises from test functions
async-fake-timers - Use fake timers for time-dependent code
async-waitfor-polling - Use vi.waitFor for async conditions
async-concurrent-expect - Use test context expect in concurrent tests
async-act-wrapper - Await user events to avoid act warnings
async-error-handling - Test async error handling properly
2. Test Setup & Isolation (CRITICAL)
setup-beforeeach-cleanup - Clean up state in afterEach hooks
setup-restore-mocks - Restore mocks after each test
setup-avoid-shared-state - Avoid shared mutable state between tests
setup-beforeall-expensive - Use beforeAll for expensive one-time setup
setup-reset-modules - Reset modules when testing module state
setup-test-factories - Use test factories for complex test data