writing-vitest-tests

Installation
SKILL.md

Writing Vitest Tests

This skill teaches test structure and patterns for writing effective Vitest tests.

Quick Start

Basic Test

import { test, expect } from 'vitest';

test('adds numbers correctly', () => {
  expect(1 + 2).toBe(3);
});

Test Suite

Related skills
Installs
4
First Seen
Feb 4, 2026