Vitest — certificate-authority Vitest, pki-manager-web, community, certificate-authority, ide skills, certificate-management, cosmian, fastify, pki-manager, typescript, Claude Code

v1.0.0

关于此技能

非常适合需要快速高效单元测试、即时反馈和AI驱动测试能力的JavaScript代理。 Expert guidance for Vitest testing framework including unit tests, integration tests, mocking, coverage, React Testing Library integration, and TypeScript testing. Use this when writing tests for Vite-based applications.

# 核心主题

oriolrius oriolrius
[7]
[2]
更新于: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
33
Canonical Locale
en
Detected Body Locale
en

非常适合需要快速高效单元测试、即时反馈和AI驱动测试能力的JavaScript代理。 Expert guidance for Vitest testing framework including unit tests, integration tests, mocking, coverage, React Testing Library integration, and TypeScript testing. Use this when writing tests for Vite-based applications.

核心价值

赋予代理使用Vitest编写极快的单元测试的能力,利用其Jest兼容的API、第一级TypeScript支持和内置的v8/istanbul代码覆盖,同时提供一个漂亮的UI用于测试结果。

适用 Agent 类型

非常适合需要快速高效单元测试、即时反馈和AI驱动测试能力的JavaScript代理。

赋予的主要能力 · Vitest

使用@testing-library/react为React应用程序自动化单元测试
使用v8/istanbul生成测试覆盖报告
使用Vitest的HMR获得即时反馈来调试JavaScript代码

! 使用限制与门槛

  • 需要Vite原生环境
  • 与非Jest兼容测试框架存在兼容性问题
  • 需要额外的设置@vitest/ui和@testing-library/react

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

Vitest 是什么?

非常适合需要快速高效单元测试、即时反馈和AI驱动测试能力的JavaScript代理。 Expert guidance for Vitest testing framework including unit tests, integration tests, mocking, coverage, React Testing Library integration, and TypeScript testing. Use this when writing tests for Vite-based applications.

如何安装 Vitest?

运行命令:npx killer-skills add oriolrius/pki-manager-web/Vitest。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

Vitest 适用于哪些场景?

典型场景包括:使用@testing-library/react为React应用程序自动化单元测试、使用v8/istanbul生成测试覆盖报告、使用Vitest的HMR获得即时反馈来调试JavaScript代码。

Vitest 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

Vitest 有哪些限制?

需要Vite原生环境;与非Jest兼容测试框架存在兼容性问题;需要额外的设置@vitest/ui和@testing-library/react。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add oriolrius/pki-manager-web/Vitest。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    Vitest 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

Vitest

安装 Vitest,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Vitest

Expert assistance with Vitest - Blazing fast unit test framework.

Overview

Vitest is a Vite-native testing framework:

  • Fast: Powered by Vite, instant HMR
  • Compatible: Jest-compatible API
  • TypeScript: First-class TypeScript support
  • Coverage: Built-in coverage with v8/istanbul
  • UI: Beautiful UI for test results

Installation

bash
1npm install --save-dev vitest 2npm install --save-dev @vitest/ui 3npm install --save-dev @testing-library/react @testing-library/jest-dom

Configuration

typescript
1// vitest.config.ts 2import { defineConfig } from 'vitest/config'; 3import react from '@vitejs/plugin-react'; 4 5export default defineConfig({ 6 plugins: [react()], 7 test: { 8 globals: true, 9 environment: 'jsdom', 10 setupFiles: './src/test/setup.ts', 11 coverage: { 12 provider: 'v8', 13 reporter: ['text', 'html', 'json'], 14 }, 15 }, 16});

Setup File

typescript
1// src/test/setup.ts 2import { expect, afterEach } from 'vitest'; 3import { cleanup } from '@testing-library/react'; 4import * as matchers from '@testing-library/jest-dom/matchers'; 5 6expect.extend(matchers); 7 8afterEach(() => { 9 cleanup(); 10});

Basic Tests

typescript
1import { describe, it, expect } from 'vitest'; 2 3describe('Math functions', () => { 4 it('adds numbers', () => { 5 expect(1 + 1).toBe(2); 6 }); 7 8 it('multiplies numbers', () => { 9 const result = 2 * 3; 10 expect(result).toEqual(6); 11 }); 12});

Testing React Components

typescript
1import { render, screen } from '@testing-library/react'; 2import { describe, it, expect } from 'vitest'; 3import { Button } from './Button'; 4 5describe('Button', () => { 6 it('renders with text', () => { 7 render(<Button>Click me</Button>); 8 expect(screen.getByText('Click me')).toBeInTheDocument(); 9 }); 10 11 it('handles click events', async () => { 12 const handleClick = vi.fn(); 13 render(<Button onClick={handleClick}>Click</Button>); 14 15 await userEvent.click(screen.getByText('Click')); 16 expect(handleClick).toHaveBeenCalledOnce(); 17 }); 18});

Mocking

typescript
1import { vi } from 'vitest'; 2 3// Mock function 4const mockFn = vi.fn(); 5mockFn('hello'); 6expect(mockFn).toHaveBeenCalledWith('hello'); 7 8// Mock return value 9const mockFn = vi.fn().mockReturnValue(42); 10expect(mockFn()).toBe(42); 11 12// Mock async function 13const mockFn = vi.fn().mockResolvedValue('data'); 14const result = await mockFn(); 15expect(result).toBe('data'); 16 17// Mock module 18vi.mock('./api', () => ({ 19 fetchCertificate: vi.fn().mockResolvedValue({ id: '1', subject: 'CN=test' }), 20}));

Best Practices

  1. Describe Blocks: Group related tests
  2. Clear Names: Write descriptive test names
  3. AAA Pattern: Arrange, Act, Assert
  4. One Assertion: Test one thing at a time
  5. Mock External: Mock external dependencies
  6. Coverage: Aim for high coverage
  7. Fast Tests: Keep tests fast
  8. Isolation: Tests should be independent
  9. User Events: Use userEvent over fireEvent
  10. Accessibility: Test with accessible queries

Resources

相关技能

寻找 Vitest 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具