From 89551efa55e4d5a7ad87b686a04492b1029a3d87 Mon Sep 17 00:00:00 2001 From: Jozias Martini Date: Thu, 1 Sep 2022 16:24:11 -0300 Subject: [PATCH] Update testing in Node.js roadmap (#1652) * Update testing in Node.js roadmap * Update content/roadmaps/107-nodejs/content/111-nodejs-testing/readme.md Co-authored-by: Kamran Ahmed --- .../107-nodejs/content/111-nodejs-testing/readme.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/111-nodejs-testing/readme.md b/content/roadmaps/107-nodejs/content/111-nodejs-testing/readme.md index 585d4aa3c..e08a981ac 100644 --- a/content/roadmaps/107-nodejs/content/111-nodejs-testing/readme.md +++ b/content/roadmaps/107-nodejs/content/111-nodejs-testing/readme.md @@ -1 +1,7 @@ -# Nodejs testing \ No newline at end of file +# 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 \ No newline at end of file