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

ts-testing测试

Agent Skill

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

总安装

588

周安装

24

GitHub Stars

23

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/johnlindquist/claude --skill ts-testing

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。

  • 适用于项目测试框架集成、测试覆盖率提升和问题诊断等前端设计相关任务。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加指定技能。
  • 使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑。
  • ts-testing 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

This skill guides you to build pragmatic, maintainable test suites for TypeScript code. Focus on behavioral coverage, fast feedback, and alignment with the project's existing tooling.

The user is a TypeScript‑focused developer. They likely care about correctness, refactoring safety, and not drowning in flaky or brittle tests.

When to use this skill

Use this skill when:

  • The user is adding or updating unit, integration, or end‑to‑end tests
  • The user reports a bug and wants a regression test
  • The user is refactoring and wants confidence they didn’t break behavior
  • The repo has test tooling configured (or clearly needs one) and you’re asked to “add tests” or “improve tests”

Do not invent a new test stack if the repo already has one. First detect and follow the existing setup.

Library preferences

Always align with the repo first (check package.json, devDependencies, config files):

  • If the repo already uses a framework (Jest, Vitest, Playwright, Cypress, etc.), stick with it.
  • Only suggest new libraries if there is no obvious testing stack yet.

When you must choose, prefer:

  • Unit / integration tests

- Node / backend / shared libraries: - Prefer Vitest (vitest) or Jest (jest) - If vitest is present, use it. Else if jest is present, use that.

  • React / UI component tests

- Use Testing Library with the existing runner: - @testing-library/react with Vitest or Jest

  • End‑to‑end browser tests

- Prefer Playwright if installed or if starting from scratch - Use Cypress if the repo already uses it or the user asks for it explicitly

If the repo uses a less common stack (Mocha, Ava, Node’s built‑in test runner), respect that choice and adapt.

Core testing philosophy

Follow these principles:

  • Test behavior, not implementation details

- For React/UI: test what the user sees and does (DOM, events, ARIA), not internal state or private methods - For services: test public APIs, not private helpers

  • Keep tests fast and focused

- Prefer small, deterministic tests that run quickly - Avoid unnecessary network, filesystem, or database calls unless you are explicitly writing integration tests

  • Make failures obvious

- Clear naming and assertions that explain *why* a test failed - Use descriptive test names following “given/when/then” style where helpful

  • Minimize mocking, but use it where it makes sense

- Mock external services, network calls, and slow dependencies - Avoid mocking your own business logic unless there’s a strong reason

Standard workflow

When asked to add or improve tests, follow this workflow:

  1. Detect the existing stack

- Inspect package.json for jest, vitest, @playwright/test, cypress, @testing-library/* - Look for config files: jest.config.*, vitest.config.*, playwright.config.*, cypress.config.* - Check test, unit, or e2e scripts in package.json

  1. Locate the right place for the test

- Mirror existing patterns: - If tests live in __tests__ directories, follow that - If they use *.test.ts or *.spec.ts, do the same - For UI: place tests near the component (e.g. Component.test.tsx) if that’s the existing convention

  1. Write the test in a TS‑friendly way

- Use .test.ts / .test.tsx (or .spec) as per repo convention - Avoid any in tests when possible; use real types or minimal interfaces to keep tests robust - For async code: use await with async test functions, avoid dangling promises

  1. Follow library‑specific best practices Vitest / Jest React Testing Library Playwright / Cypress

- Use describe / it or test with clear names - Prefer vi.fn() / jest.fn() for spies and mocks - For modules: use vi.mock() / jest.mock() and keep mocks at the top of the file - For timers: use fake timers only when necessary (vi.useFakeTimers() / jest.useFakeTimers()) - Use render, screen, and user interactions (userEvent) - Query by role, label, text as a user would (prefer getByRole, getByLabelText) - Avoid querying by test IDs unless there’s no good semantic alternative - Use existing fixtures and helpers (e.g. authenticated sessions, base URL) instead of re‑inventing them - Keep tests independent; don’t rely on order - Use data-testid or semantics consistently as locators

  1. Add regression tests for reported bugs

- Reproduce the bug in a failing test first - Only then change the implementation to make the test pass - Name regression tests clearly (e.g. it("does not crash when X is null (regression #123)"))

  1. Running tests

- Use existing scripts, e.g. npm test, pnpm test, npx vitest, npx jest, npx playwright test - If adding a new test command, wire it into package.json scripts following existing style

Patterns to prefer

  • One behavior per test: Don’t cram multiple unrelated assertions into a single test unless they’re part of the same scenario.
  • Helper factories: Use small factory functions for building test data (makeUser, makeOrder) instead of duplicating setup.
  • Explicit async handling: Always await promises; avoid passing async callbacks to APIs that don’t expect them.

Anti‑patterns to avoid

  • Overuse of snapshots for complex objects or DOM – use targeted assertions instead
  • Testing private methods directly
  • Heavy mocking that makes tests mirror implementation wiring
  • Flaky tests that depend on real time, network, or global state without control

TypeScript‑specific guidance

  • Use the project’s tsconfig for tests when possible (tsconfig.test.json if present)
  • Avoid silencing type errors just to “get tests compiling”
  • When stubbing data, create minimal typed helpers rather than using as any

If the user asks you to generate tests, prefer fewer, high‑value tests that mirror real usage over large, mechanical test suites.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.69%
按下载量换算58

Gemini CLI

24.34%
按下载量换算46

Antigravity

16.92%
按下载量换算32

OpenCode

12.01%
按下载量换算23

windsurf

7.87%
按下载量换算15

Codex

3.59%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills