Vishwas Acharyavishwasacharya.hashnode.dev·Jun 8, 2023How to test your React components like a proIntroduction React is a popular JavaScript library used for building user interfaces, and it's important to ensure that your components are thoroughly tested to guarantee their functionality and reliability. Testing React components can be challengin...DiscussReact
Akshat Vishwakarmaakshatv.hashnode.dev·May 6, 2023Jest and React Testing Library: Harnessing the Power of Unit and Integration Testing in Your React AppIntroduction 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 complement each other well. In this blog, we will ...Discuss·29 readsJest
Blossomblossom.hashnode.dev·Feb 1, 2023UI Testing: Unit vs Component testWhen 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 testing as they are commonly used interchangeably ...Chinenye Anikwenze and 1 other are discussing this2 people are discussing thisDiscuss·15 likes·250 readsfrontend conceptsreact testing
Ravi KumarforFor Devs By Devsfor-devs-by-devs.hashnode.dev·Nov 21, 2022Login form testing using React Testing LibraryReact 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 practices. So rath...Discuss·1 like·1.1K readslogin form
Quincy Oghenetejiriquincyoghenetejiri.hashnode.dev·Nov 7, 2022Writing Maintainable Tests in React using the React Testing Library.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 this objective so that refactoring of your components...Discuss·5 likes·77 readsReact
Alanna M.blog.ruthmatieu.com·Aug 19, 2022Testing w/ React Testing Library + JestWhat 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 tests that resemble how a user would use your appli...Discuss·64 readsReactReact