vitest-testing

Installation
SKILL.md

Vitest Best Practices

Quick Reference

import { describe, it, expect, beforeEach, vi } from 'vitest'

describe('feature name', () => {
  beforeEach(() => {
    vi.clearAllMocks()
  })

  it('should do something specific', () => {
    expect(actual).toBe(expected)
  })
Related skills

More from existential-birds/beagle

Installs
358
GitHub Stars
57
First Seen
Jan 20, 2026