Broke the giant knowledge dump into curated fragments under src/modules/bmm/testarch/knowledge/

This commit is contained in:
Murat Ozcan
2025-09-30 09:23:32 -05:00
parent bc92bf04c3
commit c8d78d9c73
24 changed files with 149 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
# Contract Testing Essentials (Pact)
- Store consumer contracts beside the integration specs that generate them; version contracts semantically and publish on every CI run.
- Require provider verification before merge; failed verification blocks release and surfaces breaking changes immediately.
- Capture fallback behaviour inside interactions (timeouts, retries, error payloads) so resilience guarantees remain explicit.
- Automate broker housekeeping: tag releases, archive superseded contracts, and expire unused pacts to reduce noise.
- Pair contract suites with API smoke or component tests to validate data mapping and UI rendering in tandem.
_Source: Pact consumer/provider sample repos, Murat contract testing blog._