Skip to content

Commit f3d1b2f

Browse files
authored
Merge pull request #1 from the-dev-tools/claude/fix-mdx-build-error-pEEIy
Escape < characters in MDX to fix build error
2 parents 5d9eeb5 + fc3da2b commit f3d1b2f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/blog/contract-testing-vs-end-to-end-api-testing-a-decision-framework-for-engineering-teams.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ This matrix is deliberately opinionated. It helps you decide what to build first
156156

157157
| Your situation | Contract testing priority | E2E API testing priority | Why |
158158
|---|---:|---:|---|
159-
| 1 team, <30 endpoints, 1 consumer (your UI), weekly releases | Medium | High | Behavior regressions dominate, and coordination overhead is low |
159+
| 1 team, &lt;30 endpoints, 1 consumer (your UI), weekly releases | Medium | High | Behavior regressions dominate, and coordination overhead is low |
160160
| 1 team, 100+ endpoints, weekly releases | High | Medium | Surface area grows, E2E cannot touch everything |
161161
| 3+ teams, shared platform API, multiple repos | Very high | Medium | Compatibility breaks become the primary source of incidents |
162162
| Public API with external customers/partners | Very high | Medium | You need explicit compatibility guarantees and versioning discipline |
@@ -174,7 +174,7 @@ If your org prefers something closer to an algorithm, use a weighted score.
174174
### Step 1: assign a score (1 to 5) for each factor
175175

176176
- **Team boundaries**: 1 (single team) to 5 (many teams, external consumers)
177-
- **API surface area**: 1 (<20 endpoints) to 5 (hundreds)
177+
- **API surface area**: 1 (&lt;20 endpoints) to 5 (hundreds)
178178
- **Release frequency**: 1 (monthly) to 5 (daily/continuous)
179179
- **Consumer count**: 1 (single consumer) to 5 (many)
180180
- **Workflow criticality**: 1 (simple CRUD) to 5 (payments, provisioning, compliance)

0 commit comments

Comments
 (0)