Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

web-testing-vitestWEB 测试 Vitest

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

288

周安装

12

GitHub Stars

5

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:web-testing-vitest(WEB 测试 Vitest)
来源仓库:https://github.com/agents-inc/skills
仓库路径:skills/web-testing-vitest
安装命令:
npx skills add https://github.com/agents-inc/skills --skill web-testing-vitest
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/agents-inc/skills --skill web-testing-vitest

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 需确认项目测试框架、运行命令和夹具数据,避免为通过测试而改坏真实逻辑。
  • 安装命令:npx skills add https://github.com/agents-inc/skills --skill web-testing-vitest。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

SKILL.md

Vitest Test Runner Patterns

Quick Guide: Vitest is a fast, Vite-native test runner. Use describe/it/expect for test structure, vi.fn() for mocks, vi.mock() for module mocking, vi.spyOn() for spying. Co-locate tests with code. Use network-level API mocking over module-level mocks. Vitest v4 is current stable (requires Vite 6+, Node 20+).

<critical_requirements>

CRITICAL: Before Using This Skill

All code must follow project conventions in CLAUDE.md (kebab-case, named exports, import ordering, import type, named constants)

(You MUST co-locate tests with code in feature-based structure - NOT in separate test directories)

(You MUST use network-level API mocking - NOT module-level mocks where possible)

(You MUST use named constants for test data - no magic strings or numbers in test files)

(You MUST use vi.fn() for mocks and vi.spyOn() for spying - NEVER manually replace functions)

(You MUST use the v3+ test options syntax: test("name", {timeout: 10_000}, () => {}) - NOT as third argument)

</critical_requirements>


Auto-detection: Vitest, vi.fn, vi.mock, vi.spyOn, describe, it, expect, test, beforeEach, afterEach, vi.useFakeTimers, vitest.config, defineConfig, coverage, snapshot, mockResolvedValue, mockRejectedValue

When to use:

  • Configuring and running tests with Vitest
  • Writing unit tests for pure functions
  • Writing integration tests with network-level mocking
  • Mocking modules, functions, and timers
  • Snapshot testing
  • Configuring coverage, workspaces, and projects

When NOT to use:

  • E2E browser testing (use your E2E testing tool)
  • Component rendering and querying (use your component testing library)
  • Testing third-party library behavior (library already has tests)
  • Testing TypeScript compile-time guarantees (TypeScript already enforces)

Key patterns covered:

  • Test structure and organization (describe, it, expect)
  • Mocking (vi.fn, vi.mock, vi.spyOn, vi.mockObject)
  • Fake timers (vi.useFakeTimers, vi.advanceTimersByTime)
  • Network-level API mocking for integration tests
  • Feature-based test organization (co-located with code)
  • Configuration (vitest.config, projects, coverage)
  • Vitest v3/v4 migration and breaking changes

Detailed Resources:


Philosophy

Vitest is a Vite-native test runner designed for speed and developer experience. It provides Jest-compatible APIs with native ESM support, TypeScript out of the box, and Vite's transform pipeline.

Core Principles:

  1. Co-locate tests with code - Tests live next to the code they test for discoverability and maintenance
  2. Network-level mocking over module mocking - Mock at the HTTP boundary, not at import boundaries
  3. Named constants for all test data - No magic strings or numbers in test files
  4. Test behavior, not implementation - Focus on inputs and outputs, not internal state
  5. Fast feedback loops - Leverage Vitest's HMR-based watch mode for instant re-runs

When to use Vitest:

  • Unit testing pure functions (business logic, utilities, formatters)
  • Integration testing with network-level API mocking
  • Snapshot testing for serializable outputs
  • Any test that doesn't require a real browser

When NOT to use Vitest:

  • Browser-based E2E testing (use your E2E testing tool)
  • Visual regression testing (use your visual testing tool)

Core Patterns

Pattern 1: Unit Testing Pure Functions

Write unit tests for pure functions with no side effects. Focus on clear input/output behavior.

What to test:

  • Pure functions with clear input -> output
  • Business logic calculations (pricing, taxes, discounts)
  • Data transformations and formatters
  • Edge cases and boundary conditions

See examples/core.md for pure function test examples.


Pattern 2: Integration Testing with Network-Level Mocking

Use Vitest with network-level API mocking to test components with their API integration layer.

When Integration Tests Make Sense:

  • Component behavior in isolation (form validation, UI state)
  • Testing edge cases that are hard to reproduce in E2E
  • Development workflow (faster than spinning up full stack)

Key Pattern:

  • Tests in __tests__/ directories co-located with code
  • Network-level API mocking (intercepts HTTP requests)
  • Centralized mock data in shared package
  • Test all states: loading, empty, error, success

See examples/integration.md for integration test examples.


Pattern 3: Feature-Based Test Organization

Co-locate tests with code in feature-based structure. Tests live next to what they test.

Direct Co-location (Recommended):

src/
  features/
    auth/
      components/
        login-form.tsx
        login-form.test.tsx        # Test next to component
      hooks/
        use-auth.ts
        use-auth.test.ts           # Test next to hook

Alternative: __tests__/ Subdirectories:

src/features/auth/
  components/
    login-form.tsx
    __tests__/
      login-form.test.tsx

E2E Test Organization:

tests/
  e2e/
    auth/
      login-flow.spec.ts
      register-flow.spec.ts
    checkout/
      checkout-flow.spec.ts

File Naming Convention:

  • *.test.tsx / *.test.ts for unit and integration tests

Choose one pattern and be consistent across the codebase.


<red_flags>

RED FLAGS

High Priority Issues:

  • Module-level mocking (vi.mock) instead of network-level - breaks when import structure changes, doesn't test serialization
  • Only testing happy paths - error states go untested until users report them
  • Not using named constants for test data - magic strings and numbers make tests unreadable

Medium Priority Issues:

  • Mocks that don't match real API - tests pass but production fails because mocks drifted
  • Complex mocking setup - simplify or test at a higher level
  • Not resetting mocks between tests - causes cross-test pollution

Gotchas & Edge Cases:

  • Network mock handlers are typically global - reset handlers after each test to prevent pollution
  • Vitest v3+: Test options must be second argument: test("name", {timeout: 10_000}, () => {}) NOT test("name", () => {}, {timeout: 10_000})
  • Vitest v4: Multiple mock behavior changes (getMockName, restoreAllMocks, automocked getters) - see reference.md for full v4 migration notes
  • vi.fn().mock.invocationCallOrder starts at 1 in v4 instead of 0
  • vi.restoreAllMocks() only affects manual spies in v4, not automocks - use vi.resetAllMocks() for full reset

</red_flags>


<critical_reminders>

CRITICAL REMINDERS

All code must follow project conventions in CLAUDE.md

(You MUST co-locate tests with code in feature-based structure - NOT in separate test directories)

(You MUST use network-level API mocking - NOT module-level mocks where possible)

(You MUST use named constants for test data - no magic strings or numbers in test files)

(You MUST use vi.fn() for mocks and vi.spyOn() for spying - NEVER manually replace functions)

(You MUST use the v3+ test options syntax: test("name", {timeout: 10_000}, () => {}) - NOT as third argument)

Failure to follow these rules will result in fragile tests that break on refactoring and false confidence from poorly structured test suites.

</critical_reminders>

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.67%
按下载量换算34

Claude

29.67%
按下载量换算28

Cursor

19.29%
按下载量换算19

Gemini CLI

9.79%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills