Problem Statement
What is a Test Pyramid in Node.js?
Explanation
The Test Pyramid represents the ideal balance of test types: more unit tests at the bottom, fewer integration tests in the middle, and even fewer end-to-end tests at the top. It ensures faster, stable, and maintainable testing strategies.