0.8.1 • Published 6 months ago

@mahpooya/enzyme-adapter-react-17 v0.8.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

npm downloads CI

@mahpooya/enzyme-adapter-react-17

Unofficial adapter for React 17 for Enzyme (forked for editing react dependency)

Installation

npm install --save-dev @mahpooya/enzyme-adapter-react-17

or, if you're using Yarn:

yarn add --dev @mahpooya/enzyme-adapter-react-17

Configuration

Finally, you need to configure enzyme to use the adapter you want it to use. To do this, you can use the top level configure(...) API.

import Enzyme from 'enzyme';
import Adapter from '@mahpooya/enzyme-adapter-react-17';

Enzyme.configure({ adapter: new Adapter() });