shinpr/agentic-code · Archived

integration-e2e-testing

Applies integration and E2E implementation, mock-boundary, and review rules. Use when: writing integration or E2E tests or reviewing their quality.

First seen Jun 15, 2026

Installation

$ npx skills add shinpr/agentic-code --skill integration-e2e-testing

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from shinpr/agentic-code.

npx skills add shinpr/agentic-code

Browse all from shinpr/agentic-code

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 49
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,778 B
  • docs SUMMARY.md 178 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Integration and E2E Test Implementation and Review Rules

Implementation Rules

Behavior Verification

Step Type Verification Target
Trigger Reproduce in test setup (Arrange)
Process Intermediate state or function call
Observable Result Final output value (return value, error message, log output)

Pass Criteria: Test passes if "observable result" is verified as return value or mock call argument

Integration Test Mock Boundaries

Judgment Criteria Mock Actual
Part of test target? No → Can mock Yes → Actual required
External network communication? Yes → Mock required No → Actual recommended

E2E Test Execution Conditions

  • Execute only after all components are implemented
  • Do not use mocks (full system integration required)

Review Criteria

Skeleton and Implementation Consistency

Check Failure Condition
Behavior Verification No assertion for "observable result"
Verification Item Coverage Listed verification items not included in assertions
Mock Boundary Internal components mocked in integration test

Implementation Quality

Check Failure Condition
AAA Structure Arrange/Act/Assert separation unclear
Independence State sharing between tests, execution order dependency
Reproducibility Depends on date/random, results vary
Readability Test name and verification content don't match