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

testing-unit检测单位

Agent Skill

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

总安装

333

周安装

14

GitHub Stars

4

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill testing-unit

简介

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

  • 适合编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免为通过测试而改坏真实逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。
  • 安装方式:github,支持 Codex、Claude、Cursor、Gemini CLI。

SKILL.md

Purpose

This skill equips the AI to assist with unit testing using frameworks like Jest/Vitest for JavaScript, pytest for Python, Go's testify, RSpec for Ruby, XCTest for Swift, and JUnit5 for Java. It focuses on mocking dependencies, creating stubs, and ensuring test isolation to verify code behavior in controlled environments.

When to Use

Use this skill when writing new unit tests, debugging existing ones, or refactoring code that requires isolated testing. Apply it for TDD workflows, mocking external APIs or databases, or ensuring functions work independently. For example, use it when a function depends on a network call—mock it to test locally without real dependencies.

Key Capabilities

  • Mocking: Create mocks for functions or modules, e.g., in Jest with jest.mock('module') to replace real implementations.
  • Stubbing: Define stub responses, like in pytest using monkeypatch.setattr() to fake object methods.
  • Isolation: Run tests in isolation, such as using Go's testify to assert without side effects, or JUnit5's @TempDir for isolated file operations.
  • Framework-Specific: Support for Jest/Vitest assertions (e.g., expect().toBe()), pytest fixtures for setup/teardown, RSpec's double for mocks, XCTest's setUp() for isolation, and JUnit5's @Mock annotations.
  • Config Formats: Use Jest's jest.config.js with {testEnvironment: 'node', setupFilesAfterEnv: ['<rootDir>/setupTests.js']} for custom mocks; pytest's pytest.ini with [pytest] addopts = -v for verbose output.

Usage Patterns

To accomplish unit testing tasks, follow these steps: 1) Identify dependencies to mock (e.g., HTTP calls). 2) Set up mocks or stubs in your test file. 3) Write assertions to verify outputs. 4) Run tests with appropriate flags. For TDD, write a failing test first, then implement code. In Jest, structure tests with describe() blocks; in pytest, use fixtures for shared setup. Always isolate tests by avoiding global state—use beforeEach() in Jest or @pytest.fixture(scope='function') in pytest.

Common Commands/API

  • Jest/Vitest: Run tests with npx jest --watchAll for interactive mode; mock modules via jest.mock('axios', () => ({get: jest.fn().mockResolvedValue({data: {}})}));. API: Use expect(value).toEqual(expected) for assertions.
  • pytest: Execute with pytest tests/ -v --cov for coverage; stub functions with def test_function(monkeypatch): monkeypatch.setattr('module.func', lambda: 'stubbed'). API: Leverage @pytest.fixture for isolation, e.g., def mock_db(): return {'query': lambda: []}.
  • Go (testify): Build with go test -v./... and use mock.Mock from testify; e.g., mockCtrl:= gomock.NewController(t); mockObj:= NewMockInterface(mockCtrl); mockObj.EXPECT().Method().Return(value).
  • RSpec: Run via rspec spec/; create doubles with double('Object', method: -> 'stubbed'). API: Use expect {code}.to change {something}.
  • XCTest: Compile and run with xcodebuild test; mock in Swift using protocol stubs, e.g., class MockService: ServiceProtocol {func fetchData() -> Data {return Data()}}.
  • JUnit5: Execute via ./gradlew test; use Mockito with @ExtendWith(MockitoExtension.class) public class TestClass {@Mock private Dependency dep; @InjectMocks private ClassUnderTest cut;}. If integrating external services, set env vars like $API_KEY for authentication in tests.

Integration Notes

Integrate this skill by embedding unit tests into CI/CD pipelines, e.g., add Jest to a GitHub Actions workflow with run: npm test. For multi-language projects, use a monorepo setup with tools like Nx for Jest and pytest. Configure environment variables for secrets, e.g., export $DATABASE_URL in your test runner. Link with code coverage tools like Istanbul for Jest or Coverage.py for pytest; ensure mocks respect these by using --no-cov flags when debugging. For API-dependent tests, inject env vars like $SERVICE_API_KEY into your test command, e.g., pytest --api-key=$SERVICE_API_KEY.

Error Handling

Handle common errors prescriptively: For assertion failures in Jest, check stack traces and use jest.fn().mockImplementation() to debug mocks; if a mock isn't called, add .toHaveBeenCalled() assertions. In pytest, catch fixture errors by wrapping in try/except, e.g., def test_with_fixture(fix): try: fix.setup() except Exception as e: pytest.fail(str(e)). For Go, use testify's assert.NoError(t, err) to fail tests on errors. In RSpec, handle doubles with allow(double).to receive(:method).and_raise(Error). For JUnit5, use @Test(expected = Exception.class) for expected failures. Always isolate error-prone code with stubs to prevent cascading failures; rerun with verbose flags like jest --debug or pytest -s for detailed output.

Concrete Usage Examples

  1. Jest Mock Example: To test a function that fetches data, mock the fetch API: jest.mock('node-fetch'); const fetch = require('node-fetch'); fetch.mockResolvedValue({json: () => Promise.resolve({data: 'mocked'})}); test('fetches data', async () => {expect(await fetchData()).toEqual('mocked');});
  2. pytest Fixture Example: To isolate a database-dependent test, use a fixture: import pytest @pytest.fixture def mock_db(): return {'query': lambda: [{'id': 1}]} def test_query(mock_db): assert mock_db['query']()[0]['id'] == 1

Graph Relationships

  • Related to: testing-integration (for broader testing workflows), code-debugging (for fixing test failures)
  • Clusters with: testing (as part of the testing cluster), code-execution (for running tests in isolated environments)
  • Depends on: environment-setup (for managing test dependencies like mocks)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.52%
按下载量换算45

Claude

30.85%
按下载量换算36

Cursor

17.74%
按下载量换算21

Gemini CLI

9.9%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills