Integration test
Skill DongDuong2001/pudo-code-system/skills/test/integration-test
Modular, scalable, automated development intelligence.
npx -y skills add DongDuong2001/pudo-code-system --skill integration-testAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Testing boundaries between components, databases, and external APIs
SKILL.md
0.8 KB, as published. Nobody here has run it
Integration Test Skill
This skill governs testing the seams and connections between various components of the system.
When to use this skill
- When validating database queries, ORM layers, and transaction logic.
- When ensuring microservices communicate correctly.
- When testing against third-party API contracts.
Guidelines
- Real Infrastructure: Where possible, use real databases (via Docker/Testcontainers) instead of in-memory mocks for accurate behavior replication.
- Clean State: Ensure the database or state is reset before or after each integration test to prevent cross-test pollution.
- Contract Testing: Consider Consumer-Driven Contracts (like Pact) when integrating with external services to catch API changes early.