Problem Statement
What is the Test Pyramid and how does it apply to Node.js APIs?
Explanation
The Test Pyramid recommends writing many small unit tests, fewer integration tests, and very few end-to-end tests. For Node.js APIs, test each function (unit), routes with databases (integration), and full flows (E2E).