© 2023 Hashnode
#react-testing
Introduction Testing is a critical aspect of building robust and reliable React applications. When it comes to testing React components, Jest and React Testing Library are two popular frameworks that …
When it comes to testing your frontend applications; there are many testing methodologies: unit testing, component testing, integration and end-to-end test. This article focuses on unit and component …
React Testing Library The react-testing-library is a very light-weight solution for testing React components. It provides light utility functions on top of react-dom and react-dom/test-utils, in a way that encourages better testing practice…
If you want to be sure that your components are functioning correctly for your users, you should build maintainable tests. You want to avoid putting implementation details in your tests as part of thi…
What is React Testing Library (RTL)? React Testing Library, referred to going forward as RTL, is a type of unit test specifically for React applications. The goal of the library is to help you write t…