Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

frontend-testing前端测试

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

190

周安装

8

GitHub Stars

17

下载量

67
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mintuz/claude-plugins --skill frontend-testing

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 使用时需结合项目现有设计系统、路由和构建方式,避免只生成孤立片段。
  • 安装方式:github,通过 npx skills add 命令从 mintuz/claude-plugins 仓库添加。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。

SKILL.md

Front-End Testing with DOM Testing Library

Framework-agnostic DOM Testing Library patterns for behavior-driven testing. For React-specific patterns (renderHook, context, components), load the react-testing skill. For TDD workflow (RED-GREEN-REFACTOR), load the tdd skill.

Core Philosophy

Test behavior users see, not implementation details.

Testing Library exists to solve a fundamental problem: tests that break when you refactor (false negatives) and tests that pass when bugs exist (false positives).

Two Types of Users

Your UI components have two users:

  1. End-users: Interact through the DOM (clicks, typing, reading text)
  2. Developers: You, refactoring implementation

Kent C. Dodds principle: "The more your tests resemble the way your software is used, the more confidence they can give you."

Why This Matters

False negatives (tests break on refactor):

// ❌ WRONG - Testing implementation (will break on refactor)
it("should update internal state", () => {
  const component = new CounterComponent();
  component.setState({ count: 5 }); // Coupled to state implementation
  expect(component.state.count).toBe(5);
});

Correct approach (behavior-driven):

// ✅ CORRECT - Testing user-visible behavior
it("should submit form when user clicks submit", async () => {
  const handleSubmit = vi.fn();
  const user = userEvent.setup();

  render(`
    <form id="login-form">
      <label>Email: <input name="email" /></label>
      <button type="submit">Submit</button>
    </form>
  `);

  await user.type(screen.getByLabelText(/email/i), "test@example.com");
  await user.click(screen.getByRole("button", { name: /submit/i }));

  expect(handleSubmit).toHaveBeenCalled();
});

Quick Reference

TopicGuide
Query selection priority and detailsqueries.md
userEvent patterns and interactionsuser-events.md
Async testing (findBy, waitFor)async-testing.md
MSW for API mockingmsw.md
Common mistakes and fixesanti-patterns.md
Accessibility-first testing principlesaccessibility-first-testing.md

When to Use Each Guide

Queries

Use queries.md when you need:

  • Query priority order (getByRole → getByLabelText →...)
  • Query variant decisions (getBy vs queryBy vs findBy)
  • Common query mistakes and fixes

User Events

Use user-events.md when you need:

  • userEvent vs fireEvent guidance
  • userEvent.setup() pattern
  • Common interaction patterns (clicking, typing, keyboard)

Async Testing

Use async-testing.md when you need:

  • findBy queries for async elements
  • waitFor for complex conditions
  • waitForElementToBeRemoved
  • Loading states, API responses, debounced inputs

MSW

Use msw.md when you need:

  • Network-level API mocking
  • setupServer pattern
  • Per-test handler overrides

Anti-Patterns

Use anti-patterns.md when you need:

  • List of all common mistakes
  • Quick reference of what NOT to do
  • ESLint plugin setup

Accessibility-First Testing

Use accessibility-first-testing.md when you need:

  • Why accessible queries improve tests and accessibility
  • When to add ARIA attributes vs semantic HTML
  • Semantic HTML priority principles

Summary Checklist

Before merging UI tests, verify:

  • Using getByRole as first choice for queries
  • Using userEvent with setup() (not fireEvent)
  • Using screen object for all queries (not destructuring from render)
  • Using findBy* for async elements (loading, API responses)
  • Using jest-dom matchers (toBeInTheDocument, toBeDisabled, etc.)
  • Testing behavior users see, not implementation details
  • ESLint plugins installed (eslint-plugin-testing-library, eslint-plugin-jest-dom)
  • No manual cleanup() calls (automatic)
  • MSW for API mocking (not fetch/axios mocks)
  • Following TDD workflow (see tdd skill)
  • Using test factories for data (see testing skill)
  • For framework-specific patterns (React hooks, context, components), see react-testing skill

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

30.09%
按下载量换算20

trae

25.21%
按下载量换算17

Antigravity

17.07%
按下载量换算11

Codex

12.1%
按下载量换算8

windsurf

7.23%
按下载量换算5

Gemini CLI

3.57%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills