What enzyme adapter is there for React 17?
If you have React version 17, you can use this unofficial adapter for React 17 for enzyme.
// src/setupTests.js
import { configure } from 'enzyme';
import Adapter from '@wojtekmaj/enzyme-adapter-react-17';
configure({ adapter: new Adapter() });
See this GitHub issue for more information on the unofficial adapter.