Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Aroyan 33f15fdf4f
feat: add jest content (#1788)
2 years ago
..
100-jest.md feat: add jest content (#1788) 2 years ago
101-mocha.md Add content/interactivity to nodejs roadmap 2 years ago
102-cypress.md Add content/interactivity to nodejs roadmap 2 years ago
readme.md Update testing in Node.js roadmap (#1652) 2 years ago

readme.md

Testing

Software testing is the process of verifying that what we create is doing exactly what we expect it to do. The tests are created to prevent bugs and improve code quality.

The two most common testing approaches are unit testing and end-to-end testing. In the first, we examine small snippets of code, in the second, we test an entire user flow.

Differences between end-to-end testing and unit testing