Last updated: May 25, 2022

Enzyme

Enzyme is the javascript utility of react. It helps to test react components outputs. It mimics the jquery's API for DOM manipulation and traversal. Let's check out the concept and working of it.
Enzyme Introduction and Features EASY
In this blog, we will be discussing about Enzyme. We will see the different features of Enzyme with its installation, configuration, working, and rendering modes.
Author Anjali
0 upvotes
Installation and Getting started EASY
This blog discusses how to install Enzyme and how to get started with it.
Using Enzyme with JSDom EASY
This blog discusses the theoretical and practical implementations of using Enzyme with JSDom.
ShallowWrapper API Reference EASY
This blog discusses the Shallow Rendering technique and ShallowWrapper API in Enzyme.
Mount Rendering EASY
This blog discusses the theoretical and practical implementations of Mount Renderning (Full DOM Rendering).
Static Rendering
In this blog, we will discuss static rendering and how to implement it using the render function from Enzyme to generate React trees from HTML.
Enzyme Selectors EASY
In this blog, we will be discussing Enzyme Selectors. We will see the different categories of Enzyme selectors.
Author Anjali
0 upvotes
Triggering State Updates & Effects with “act” EASY
The article covers updating states with the help of act, async await.
React Hooks Support EASY
In this blog, we will learn how we can test react hook components using Enzyme.
Shallow, Mount, and Render of Enzyme EASY
This article will explore the different render methods available in react-enzyme. We will learn the difference between shallow(), mount(),and render() methods in react-enzyme.