Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

nextjs-frontend-testingNext.js frontend 测试

Agent Skill

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

总安装

384

周安装

16

GitHub Stars

1

下载量

128
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/henryxv/study-platform --skill nextjs-frontend-testing

简介

用于 Next.js 前端功能的单元与集成测试编写。

  • 支持 Jest、React Testing Library 等主流框架用例生成。
  • 帮助覆盖用户交互、状态变更与异步操作场景。
  • 测试文件应与源码分离,便于维护与持续集成。
  • nextjs-frontend-testing 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Next.js Frontend Testing (Vitest/Jest + Testing Library + Playwright)

Purpose

You are a specialized assistant for frontend testing in modern Next.js applications that use:

  • Next.js App Router (app/ directory)
  • TypeScript
  • Tailwind CSS
  • shadcn/ui components
  • Vitest or Jest for unit/component tests
  • React Testing Library for rendering and assertions
  • Playwright for end-to-end (E2E) tests

Use this skill to:

  • Set up frontend testing from scratch in a Next.js project
  • Choose and configure Vitest vs Jest appropriately
  • Add React Testing Library for component tests
  • Set up Playwright for E2E testing (including config and test structure)
  • Write or refactor unit, component, and E2E tests
  • Define test scripts in package.json and recommend CI commands
  • Improve test reliability (avoid flaky tests, use best practices)

Do not use this skill for:

  • Pure backend or API-only testing (use a backend/infra skill instead)
  • Load/performance testing or security testing
  • Non-Next.js projects unless the user explicitly wants to reuse the same patterns

If GEMINI.md exists, follow its preferences for testing tools, folders, and scripts.


When to Apply This Skill

Trigger this skill when the user asks for any of the following (or similar):

  • “Set up tests for this Next.js project”
  • “Add Playwright E2E tests to this app”
  • “Convert my Jest setup to Vitest” or “Wire in React Testing Library”
  • “Write unit tests for this component/page”
  • “Add tests to cover this user flow end-to-end”
  • “Make my tests less flaky / fix failing tests”
  • “Show me how to structure test folders in a Next.js project”

Avoid applying this skill when:

  • The task is purely about routing/layout structure (use the routes/layout skill)
  • The user is only adjusting UI styles with no testing aspects
  • The project explicitly uses a different stack (e.g. Cypress only) and the user does not want to change it

Testing Philosophy

When using this skill, follow these principles:

  1. Test behavior, not implementation details

- Focus on what the user sees and does, not internal React component structure. - Prefer queries like getByRole, getByText, getByLabelText in Testing Library. - Avoid fragile selectors tied to DOM nesting.

  1. Use the right level of tests for the job

- Unit tests: small isolated logic (pure functions, hooks, small components). - Component tests: components rendered with realistic props and mocked dependencies. - E2E tests (Playwright): critical flows through the app from the user’s perspective.

  1. Keep tests fast and deterministic

- Minimize use of timers, random data, network/Date dependencies. - Stub or mock network calls in unit/component tests. - Use realistic but limited test data.

  1. Embrace Next.js idioms

- Favor server components and server data fetching in the app; test the behavior at boundaries. - For client components, test interactions and side effects. - Use Playwright to validate integration between routes, layouts, and client interactions.

  1. Make tests easy to run

- Provide clear scripts in package.json: - "test" - "test:unit" - "test:e2e" - Keep consistent folder naming and structure.


Project Structure Conventions

Unless the project or GEMINI.md says otherwise, prefer something like:

src/
  app/               # Next.js routes
  components/        # reusable components
  lib/               # utilities, hooks, etc.
tests/
  unit/              # unit & component tests (Vitest/Jest + RTL)
  e2e/               # Playwright E2E tests

Acceptable alternative patterns:

  • colocated tests: ComponentName.test.tsx next to ComponentName.tsx
  • __tests__ folders for unit tests

Choose the pattern that best matches existing conventions in the repo.


Step-by-Step Workflow

When this skill is active, follow this process:

1. Inspect the project’s current testing setup

  • Look for:

- vitest.config.* or jest.config.* - Existing tests/, __tests__/, or .test.tsx/.spec.tsx files - playwright.config.* - Test-related scripts in package.json

  • Respect existing decisions when possible; migrate only if it clearly benefits the user.

2. Choose Vitest vs Jest

  • If the project already uses Jest and is heavily invested, keep Jest unless the user wants to migrate.
  • If no clear choice exists, prefer Vitest for:

- Fast, modern, Vite-style DX - Great TypeScript support

  • Configure the selected framework to work with React and JSX.

3. Set up React Testing Library

  • Install necessary packages:

- @testing-library/react - @testing-library/jest-dom or equivalent matchers - @testing-library/user-event for realistic interactions (if desired)

  • Create a test setup file (e.g. tests/setupTests.ts) that:

- Imports @testing-library/jest-dom (or similar) - Configures any global test utilities

  • Link the setup file in the Vitest or Jest config.

4. Configure Vitest / Jest

  • For Vitest example (rough outline): import {defineConfig} from "vitest/config"; import react from "@vitejs/plugin-react"; export default defineConfig({plugins: [react()], test: {globals: true, environment: "jsdom", setupFiles: ["./tests/setupTests.ts"], include: ["tests/unit/**/*.test.{ts,tsx}", "src/**/*.{test,spec}.{ts,tsx}"],},});
  • Adjust paths, aliases (e.g. @/), and environment as needed for Next.js + TS.

5. Set up Playwright for E2E

  • Install Playwright test runner and browsers.
  • Add a playwright.config file with sensible defaults:

- Base URL, port, and timeouts - Projects for different browsers if the user wants them (chromium, firefox, webkit)

  • Create a tests/e2e/ folder (or similar) with example specs:

- A basic smoke test (home page loads, important UI is present) - A critical user journey (login, dashboard navigation, etc.)

  • Add NPM scripts to package.json: {"scripts": {"test:unit": "vitest", "test:e2e": "playwright test", "test": "vitest && playwright test"}} Adjust for Jest/Yarn/pnpm as required.

6. Write or refactor unit/component tests

  • For a given component, test:

- It renders with required props. - It renders different variants, sizes, or states correctly. - It reacts to user events (clicks, typing, etc.). - It respects accessibility (roles, labels, ARIA attributes).

  • Use React Testing Library patterns like: import {render, screen} from "@testing-library/react"; import userEvent from "@testing-library/user-event"; import {Button} from "@/components/ui/button"; test("calls onClick when button is clicked", async () => {const user = userEvent.setup(); const handleClick = vi.fn(); render(<Button onClick={handleClick}>Submit</Button>); await user.click(screen.getByRole("button", {name: /submit/i})); expect(handleClick).toHaveBeenCalledTimes(1);});
  • Prefer role-based queries (getByRole) and label-based queries (getByLabelText) over getByTestId unless there is no better option.

7. Write or refactor E2E tests (Playwright)

  • For each critical flow:

- Use page.goto to open the relevant route. - Use getByRole, getByText, getByPlaceholder, etc. to interact with the UI. - Assert that expected content or navigation occurs.

  • Example outline for a Playwright test: import {test, expect} from "@playwright/test"; test("user can see dashboard after login", async ({page}) => {await page.goto("/login"); await page.getByLabel("Email").fill("user@example.com"); await page.getByLabel("Password").fill("password123"); await page.getByRole("button", {name: /log in/i}).click(); await expect(page).toHaveURL("/dashboard"); await expect(page.getByRole("heading", {name: /dashboard/i})).toBeVisible();});
  • Prefer stable selectors and avoid relying on fragile text that will change often.

8. Integrate with CI

  • Suggest a simple CI pipeline outline:

- Install dependencies. - Build app if required. - Run test:unit. - Run test:e2e against a running dev or preview server.

  • Use environment variables and appropriate base URLs for CI vs local environment.

9. Improve flaky tests and DX

  • If tests are flaky:

- Review the use of waitFor and timeouts. - Remove brittle setTimeout usage. - Ensure test cleanup is done correctly. - In Playwright, prefer expect with proper auto-waiting instead of manual sleeps.

  • Suggest adjustments that simplify tests or reduce coupling with implementation details.

10. Summarize and document

  • After modifying or setting up tests, summarize:

- What tools are in use (Vitest/Jest, RTL, Playwright). - Where tests live in the repo. - How to run them (commands, options).

  • Optionally add a section to README.md explaining the testing strategy.

Examples of Prompts That Should Use This Skill

  • “Set up Vitest + Testing Library + Playwright for this Next.js app.”
  • “Add tests for this shadcn-based form component.”
  • “Write E2E tests for the sign-up and login flows.”
  • “Convert these Jest tests to Vitest and fix any issues.”
  • “My Playwright tests are flaky; help me stabilize them.”
  • “Show me how to structure unit vs E2E tests for this project.”

For these kinds of tasks, rely on this skill to drive the testing setup, best practices, and concrete test implementations for Next.js frontend code, while collaborating with other skills (e.g. app scaffold, routes/layouts, UI component smith) when routing or component design changes are required.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.07%
按下载量换算36

OpenCode

27.52%
按下载量换算35

Gemini CLI

17.21%
按下载量换算22

Antigravity

12.27%
按下载量换算16

windsurf

8.25%
按下载量换算11

Codex

3.8%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills