Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

configure-integration-tests配置集成测试

Agent Skill

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

总安装

1,273

周安装

52

GitHub Stars

28

下载量

408
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-integration-tests

简介

configure-integration-tests 用于搭建 Supertest、Testcontainers 等服务交互测试框架。

  • 适用于后端 API 与数据库连接的端到端验证。
  • 支持 docker-compose.test.yml 快速启动测试依赖。
  • 包含容器化测试环境配置,需评估资源消耗成本。
  • 建议在 CI 中并行执行以减少整体耗时。

SKILL.md

/configure:integration-tests

Check and configure integration testing infrastructure for testing service interactions, databases, and external dependencies.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up integration testing infrastructure with Supertest, pytest, or TestcontainersWriting individual integration test cases for specific endpoints
Creating docker-compose.test.yml for local test service containersRunning existing integration tests (bun test, pytest -m integration)
Auditing integration test setup for completeness (fixtures, factories, CI)Configuring unit test runners (/configure:tests instead)
Adding integration test jobs to GitHub Actions with service containersDebugging a specific failing integration test
Separating integration tests from unit tests in project structureSetting up API contract testing (/configure:api-tests instead)

Context

  • Project root:!pwd
  • Package files:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'go.mod' \)
  • Integration tests dir:!find tests -maxdepth 1 -type d -name 'integration'
  • Docker compose test:!find. -maxdepth 1 -name 'docker-compose.test.yml'
  • Vitest integration config:!find. -maxdepth 1 -name 'vitest.integration.config.*'
  • Supertest dep:!grep -l 'supertest' package.json
  • Testcontainers dep:!find. -maxdepth 1 \(-name package.json -o -name pyproject.toml \) -exec grep -l 'testcontainers' {} +
  • Project standards:!find. -maxdepth 1 -name '.project-standards.yaml'

Parameters

Parse from command arguments:

  • --check-only: Report compliance status without modifications (CI/CD mode)
  • --fix: Apply fixes automatically without prompting
  • --framework <supertest|pytest|testcontainers>: Override framework detection

Integration Testing Stacks:

  • JavaScript/TypeScript: Supertest + Testcontainers
  • Python: pytest + testcontainers-python + httpx
  • Rust: cargo test with #[ignore] + testcontainers-rs
  • Go: testing + testcontainers-go

Key Difference from Unit Tests:

  • Integration tests interact with real databases, APIs, and services
  • They test component boundaries and data flow
  • They typically require test fixtures and cleanup

Execution

Execute this integration testing compliance check:

Step 1: Detect existing integration testing infrastructure

Check for these indicators:

IndicatorComponentStatus
tests/integration/ directoryIntegration testsPresent
testcontainers in dependenciesContainer testingConfigured
supertest in package.jsonHTTP testingConfigured
docker-compose.test.ymlTest servicesPresent
pytest.ini with integration markerpytest integrationConfigured

Step 2: Analyze current state

Check for complete integration testing setup:

Test Organization:

  • tests/integration/ directory exists
  • Integration tests separated from unit tests
  • Test fixtures and factories present
  • Database seeding/migration scripts

JavaScript/TypeScript (Supertest):

  • supertest installed
  • @testcontainers/postgresql or similar installed
  • Test database configuration
  • API endpoint tests present
  • Authentication test helpers

Python (pytest + testcontainers):

  • testcontainers installed
  • httpx or requests for HTTP testing
  • pytest-asyncio for async tests
  • integration marker defined
  • Database fixtures in conftest.py

Container Infrastructure:

  • docker-compose.test.yml exists
  • Test database container defined
  • Redis/cache container (if needed)
  • Network isolation configured

Step 3: Generate compliance report

Print a formatted compliance report:

Integration Testing Compliance Report
======================================
Project: [name]
Language: [TypeScript | Python | Rust | Go]

Test Organization:
  Integration directory    tests/integration/         [EXISTS | MISSING]
  Separated from unit      not in src/                [CORRECT | MIXED]
  Test fixtures            tests/fixtures/            [EXISTS | MISSING]
  Database seeds           tests/seeds/               [EXISTS | N/A]

Framework Setup:
  HTTP testing             supertest/httpx            [INSTALLED | MISSING]
  Container testing        testcontainers             [INSTALLED | MISSING]
  Async support            pytest-asyncio             [INSTALLED | N/A]

Infrastructure:
  docker-compose.test.yml  test services              [EXISTS | MISSING]
  Test database            PostgreSQL/SQLite          [CONFIGURED | MISSING]
  Service isolation        network config             [CONFIGURED | MISSING]

CI/CD Integration:
  Integration test job     GitHub Actions             [CONFIGURED | MISSING]
  Service containers       workflow services          [CONFIGURED | MISSING]

Overall: [X issues found]

Recommendations:
  - Install testcontainers for database testing
  - Create docker-compose.test.yml for local testing
  - Add integration test job to CI workflow

If --check-only, stop here.

Step 4: Configure integration testing (if --fix or user confirms)

Apply configuration based on detected project type. Use templates from REFERENCE.md:

  1. Install dependencies (supertest, testcontainers, etc.)
  2. Create test directory (tests/integration/) with setup files
  3. Create sample tests for API endpoints and database operations
  4. Create Vitest integration config (JS/TS) or pytest markers (Python)
  5. Add scripts to package.json or create run commands

Step 5: Create container infrastructure

Create docker-compose.test.yml with:

  • PostgreSQL test database (tmpfs for speed)
  • Redis test instance (if needed)
  • Network isolation

Add corresponding npm/bun scripts for managing test containers. Use templates from REFERENCE.md.

Step 6: Configure CI/CD integration

Add integration test job to .github/workflows/test.yml with:

  • Service containers (postgres, redis)
  • Database migration step
  • Integration test execution
  • Artifact upload for test results

Use the CI workflow template from REFERENCE.md.

Step 7: Create test fixtures and factories

Create tests/fixtures/factories.ts (or Python equivalent) with:

  • Data factory functions using faker
  • Database seeding helpers
  • Cleanup utilities

Use factory templates from REFERENCE.md.

Step 8: Update standards tracking

Update .project-standards.yaml:

standards_version: "2025.1"
last_configured: "[timestamp]"
components:
  integration_tests: "2025.1"
  integration_tests_framework: "[supertest|pytest|testcontainers]"
  integration_tests_containers: true
  integration_tests_ci: true

Step 9: Print final report

Print a summary of changes applied, scripts added, and next steps for running integration tests.

For detailed templates and code examples, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Quick compliance check/configure:integration-tests --check-only
Auto-fix all issues/configure:integration-tests --fix
Run integration tests (JS)bun test tests/integration --dots --bail=1
Run integration tests (Python)pytest -m integration -x -q
Start test containersdocker compose -f docker-compose.test.yml up -d
Check container health`docker compose -f docker-compose.test.yml ps --format json

Flags

FlagDescription
--check-onlyReport status without offering fixes
--fixApply all fixes automatically without prompting
--framework <framework>Override framework detection (supertest, pytest, testcontainers)

Examples

# Check compliance and offer fixes
/configure:integration-tests

# Check only, no modifications
/configure:integration-tests --check-only

# Auto-fix all issues
/configure:integration-tests --fix

# Force specific framework
/configure:integration-tests --fix --framework pytest

Error Handling

  • No app entry point found: Ask user to specify app location
  • Docker not available: Warn about testcontainers requirement
  • Database type unknown: Ask user to specify database type
  • Port conflicts: Suggest alternative ports in docker-compose

See Also

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.14%
按下载量换算131

Claude

31.29%
按下载量换算128

Cursor

18.76%
按下载量换算77

Gemini CLI

8.34%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill configure-integration-tests 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills