© 2023 Hashnode
#jest
We recently migrated our project from Parcel to Vite and the reasons for doing so are in this article. Even though migrating from Parcel to Vite may not be as difficult as migrating from Webpack to Vi…
Introduction Application testing is important because it ensures that the code is working as it should and that any changes made to the code do not break existing functionality. Writing tests allows d…
React Testing Library React Testing Library is a testing framework for React applications that helps you test the behaviour of your components rather than their implementation details. It is built on …
In this post, we'll learn how to test the props a React Function Component receives with React Testing Library and Jest. Before React Testing Library appeared, most of us were writing tests with Enzym…
Jest When you generate a new Angular project, it comes with some tools for unit testing, Karma and Jasmine Sometimes you need to replace theses tools with another framework like Jest What is Jest ? Je…
The ultimate guide to Jest: turn your testing woes into rainbows and unicorns was initially published on Thursday January 05 2023 on the Tech Dev Blog. For the latest up-to-date content, fresh out of …
Why do testing in the first place? Let's say that you are working on a signup form and have just added a couple of fields with some functionality. Testing it manually means you need to go through the …
In this article, we will show you how to create and test a simple weather application in ReactJS using Vite and TypeScript instead of create-react-app. The weather application will consist of a form w…
Testing is executing a system to identify any gaps, errors, or missing requirements contrary to the actual requirements. Software testing is divided majorly into 3 categories: Unit Testing: Testing a…
Just got done doing some testing and I want to write about the important aspects of it. ucabGoSlice.js The ucabGoSlice handles all the functions that update the state of the ucabGo store. Functions …