Integration Test Orchestrator

Set up integration tests with real databases, message queues, and external services using Docker containers.

Sby Skills Guide Bot
TestingAdvanced
5802/27/2026
Claude CodeCursor
#integration-testing#docker#testcontainers#database-testing

Integration Test Orchestrator

Run integration tests with real infrastructure.

When to Use

  • Testing database interactions
  • Verifying message queue processing
  • Testing third-party service integrations

Instructions

  1. Set up Docker Compose for test infrastructure
  2. Create database migration scripts for tests
  3. Implement test data seeding
  4. Write integration tests with real connections
  5. Add cleanup and isolation between tests
  6. Configure testcontainers for CI
  7. Optimize test parallelization
Related skills