Automatización de pruebas — ejecutar pruebas automáticamente (en CI/CD) en lugar de manualmente — es esencial para pruebas rápidas, confiables y frecuentes a escala. Construirla efectivamente implica elegir qué automatizar, estructurar la automatización de manera mantenible e integrarla en el proceso de desarrollo.
Qué automatizar (y qué no)
AUTOMATE:
✓ REGRESSION tests (run constantly to catch breakage) — the biggest win
✓ Repetitive, stable, frequently-run tests; unit/integration tests; critical flows
DON'T necessarily automate:
✗ Exploratory testing, usability, one-off checks, highly unstable/changing features
→ manual testing still has a place (exploratory, UX, edge judgment)
→ Automate what's repetitive and valuable to run often; not everything.
