Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问clear审计通过

using-tests使用测试

Agent Skill

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

总安装

1,656

周安装

69

GitHub Stars

14

下载量

552
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andrelandgraf/fullstackrecipes --skill using-tests

简介

用于辅助测试设计、自动化测试用例整理和回归验证,适合质量保障场景。

  • 可帮助编写单元测试、端到端测试或根据失败日志定位问题。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 使用时需确认项目测试框架和运行命令,避免为了通过测试而改坏真实逻辑。
  • using-tests 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Working with Tests

Testing strategy and workflow. Tests run in parallel with isolated data per suite. Prioritize Playwright for UI, integration tests for APIs, unit tests for logic.

Testing Strategy

Follow this hierarchy when deciding what kind of test to write:

  1. Playwright tests (browser) - Preferred for most features
  2. Integration tests (API) - When Playwright is not practical
  3. Unit tests (pure functions) - Only for complex isolated logic

When to Use Each Test Type

Playwright Tests (Default Choice)

Write Playwright tests when the feature involves:

  • User interactions (clicking, typing, navigation)
  • Visual feedback (toasts, loading states, error messages)
  • Form submissions and validation
  • Multi-step UI flows
  • Protected routes and redirects
  • Accessibility behavior

Example features best tested with Playwright:

  • Sign-in flow with error handling
  • Chat creation and deletion with confirmation dialogs
  • Theme toggle
  • Form validation messages
  • Navigation between pages

Integration Tests

Write integration tests when:

  • Testing API responses directly (status codes, JSON structure)
  • Verifying database state after operations
  • Testing server-side logic without UI
  • Playwright would be too slow or complex for the scenario

Example features best tested with integration tests:

  • API route returns correct status codes
  • User creation populates database correctly
  • Session cookies are set on sign-in
  • Protected API routes return 401/403

Unit Tests

Write unit tests only when:

  • Testing pure functions with complex logic
  • Testing code with many edge cases
  • Testing type narrowing and error messages
  • The function has no external dependencies

Example features best tested with unit tests:

  • Assertion helpers
  • Config schema validation
  • Data transformation functions
  • Utility functions

Running Tests

All tests run against an isolated Neon database branch that auto-deletes after 1 hour.

bun run test              # All tests with isolated Neon branch
bun run test:playwright   # Browser tests only
bun run test:integration  # Integration tests only
bun run test:unit         # Unit tests only

Folder Structure

src/
├── lib/
│   ├── common/
│   │   ├── assert.ts
│   │   └── assert.test.ts      # Unit test (co-located)
│   └── config/
│       ├── schema.ts
│       └── schema.test.ts      # Unit test (co-located)
tests/
├── integration/
│   ├── llms.test.ts            # Integration test
│   ├── r.test.ts
│   ├── mcp/
│   │   └── route.test.ts
│   └── recipes/
│       └── [slug]/
│           └── route.test.ts
└── playwright/
    ├── auth.spec.ts            # Playwright test
    ├── chat.spec.ts
    ├── home.spec.ts
    └── lib/
        └── test-user.ts        # Playwright-specific helpers

Writing Tests for New Features

Step 1: Determine Test Type

Ask: "How would a user verify this feature works?"

  • If through the UI → Playwright test
  • If through API calls → Integration test
  • If by calling a function directly → Unit test

Step 2: Create Test File

Playwright tests: tests/playwright/{feature}.spec.ts

import { test, expect } from "@playwright/test";

test.describe("Feature Name", () => {
  test("should do expected behavior", async ({ page }) => {
    await page.goto("/feature");
    // Test implementation
  });
});

Integration tests: tests/integration/{feature}.test.ts

For API routes, import the handler directly for faster, more reliable tests:

import { describe, it, expect } from "bun:test";
import { GET } from "@/app/api/feature/route";

describe("GET /api/feature", () => {
  it("should return expected response", async () => {
    const response = await GET();

    expect(response.status).toBe(200);
    const data = await response.json();
    expect(data.value).toBeDefined();
  });
});

Unit tests: src/lib/{domain}/{file}.test.ts (co-located)

import { describe, it, expect } from "bun:test";
import { myFunction } from "./my-file";

describe("myFunction", () => {
  it("should do expected behavior", () => {
    expect(myFunction()).toBe("expected");
  });
});

Test Data Management

Database Isolation

Tests run against isolated Neon branches. Each test run:

  1. Creates a fresh schema-only branch
  2. Runs tests against the branch
  3. Branch auto-deletes after 1 hour

This ensures tests don't interfere with production data.

Parallel Test Isolation

Tests run in parallel by default. Each test suite must use its own test data to avoid conflicts:

  • Different test users - Each spec file should create unique users with distinct emails
  • Different resources - Tests creating chats, sessions, etc. should not depend on shared state
  • No cleanup required - The branch TTL handles cleanup automatically
// auth.spec.ts - uses auth-specific test user
const testUser = await createTestUser({
  email: `auth-test-${uuid}@example.com`,
});

// chat.spec.ts - uses chat-specific test user
const testUser = await createTestUser({
  email: `chat-test-${uuid}@example.com`,
});

Avoid patterns that rely on global state or specific database contents existing from other tests.


Common Patterns

Testing Protected Routes (Playwright)

test("should redirect unauthenticated user", async ({ page }) => {
  await page.goto("/protected-page");
  await expect(page).toHaveURL(/sign-in/);
});

Testing Error States (Playwright)

test("should show error for invalid input", async ({ page }) => {
  await page.goto("/form");
  await page.getByRole("button", { name: /submit/i }).click();

  await expect(page.getByText(/error|required/i)).toBeVisible({
    timeout: 5000,
  });
});

Testing API Responses (Integration)

Import route handlers directly for cleaner tests:

import { GET } from "@/app/api/endpoint/route";

it("should return 200 for valid request", async () => {
  const response = await GET();
  expect(response.status).toBe(200);
});

Debugging Failed Tests

Playwright

bunx playwright test --headed              # Watch browser
bunx playwright test --debug               # Step through test
bunx playwright show-report                # View HTML report

Integration/Unit

bun test --only "test name"                # Run single test
bun test --watch                           # Re-run on changes

View test artifacts

Failed Playwright tests save screenshots and traces to test-results/. Check this folder when CI fails.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.88%
按下载量换算165

OpenCode

24.05%
按下载量换算133

Cursor

17.05%
按下载量换算94

Gemini CLI

14.49%
按下载量换算80

Antigravity

9.25%
按下载量换算51

Codex

3.85%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills