Test Strategy Recipe

testing

Creates a playbook

These cards form the test pyramid: understanding the concept, plus the three test levels (unit, integration, e2e).

Output: Test Strategy

When to use

You need to establish a balanced testing approach for a new feature or service.

Steps

1

Start with Unit Tests

Write unit tests for individual functions and components.

2

Add Integration Tests

Test how components work together at boundaries.

3

Strategic E2E Tests

Add end-to-end tests for critical user journeys only.

Anti-Patterns to Avoid

  • Inverted pyramid (more E2E than unit)
  • No tests at all

Try crafting this recipe on the crafting board

Open Crafting Board