1.0.0 • Published 3 years ago

@hteker/enzyme-adapter-react-17 v1.0.0

Weekly downloads
7
License
MIT
Repository
github
Last release
3 years ago

@hteker/enzyme-adapter-react-17

Unofficial adapter for React 17 for Enzyme.

Installation

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

or, if you're using Yarn:

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

Note for npm v7 users

enzyme's dependencies have not yet been updated to declare React 17 in peerDependencies. You need to add --legacy-peer-deps to the install command for it to work correctly.

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 '@hteker/enzyme-adapter-react-17';

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