Code without tests is broken by design.  - Jacob Kaplan-Moss

What is Unit testing?

Unit testing is like testing individual Lego pieces to make sure they work properly before building something big with them, like a spaceship or a castle.

DALL·E 2023-03-03 21.17.47 - spaceship and blue lego piece.png
Blue lego piece for our spaceship

Let’s say we have a blue Lego piece that we want to use in our spaceship. We would take that blue Lego piece and test it by trying to connect it with other Lego pieces. If it doesn’t connect properly, we know that something is wrong with the blue Lego piece, and we should not use it in our spaceship.

Similarly, when we write code for a computer program, we want to make sure that each small part of the code works correctly before we combine all the parts together to make the complete program. This is where unit testing comes in.
We take one small piece of the code, like a function that adds two numbers together, and we test it to make sure it works properly. We might give it the numbers 2 and 3 to add together, and check that it gives us the correct answer of 5. If it doesn’t work properly, we know that there is a problem with that small piece of code, and we need to fix it before we use it in the bigger program.
Just like how we want all of our Lego pieces to work properly before building something big, we want all of the small pieces of code in our program to work properly before putting them all together to make the complete program.

Unit testing in React.js


TL;DR - Unit testing helps to ensure the quality of the code, catch bugs early, and make it easier to refactor code. By investing time in unit testing, developers can create more robust and maintainable applications.


React.js is a popular JavaScript library for building user interfaces. It allows developers to create complex web applications with ease. As applications become more complex, it becomes more challenging to ensure that all parts of the code work as intended. Similar to example of Lego Pieces above this is where unit testing comes to the rescue.

Unit testing is the process of testing individual units of code, such as functions or components or contexts and hooks, in isolation to ensure that they work correctly. In React.js, unit testing is especially important because it allows developers to catch bugs early in the development process, before they become larger and more difficult to fix.

It is important to test all the components and functions in isolation so the tests are only meant for that particular component or function only.

Unit testing in React.js can be compared to building a strong foundation for a scalable project in the following ways:

Ensures Quality: Just like how a strong foundation ensures the stability of a building, unit testing ensures the quality of the code. By testing each small piece of the code, developers can catch bugs early on in the development process, which ultimately results in a higher quality, more stable and maintainable application.

Saves Time and Resources: A strong foundation can save time and resources in the long run, by reducing the need for costly repairs and maintenance. Similarly, unit testing can save developers time and resources by catching errors early on in the development process, rather than waiting until later when the codebase is larger and more complex.

Supports Scalability: A strong foundation can support the weight of a larger building, just as unit testing can support the scalability of a larger codebase. By ensuring that each small piece of the code works properly, developers can be confident in the stability and scalability of the application as a whole.

Facilitates Collaboration: A strong foundation can facilitate collaboration between different teams of builders, by providing a common starting point and clear guidelines for construction. Similarly, unit testing can facilitate collaboration between developers by providing a common understanding of how the code works and ensuring that each piece of code works as intended.

In summary, unit testing is an essential part of the React.js development process. It helps to ensure the quality of the code, catch bugs early, and make it easier to refactor code. By investing time in unit testing, developers can create more robust and maintainable applications.

Medium embed

Stay tuned 👀✨ for more articles on advanced unit testing techniques in React.js, how to effectively use mocks and stubs, and how to integrate unit testing into your continuous integration and deployment pipeline.

Source: https://www.codementor.io/mohit21gojs/simple-introduction-to-unit-testing-in-react-js-in-plain-english-medium-22k10u8imt