enzyme-adapter-preact
Enzyme adapter for PreactInstallation and usage
Install adapter withnpm install enzyme-adapter-preact --save-dev
or yarn add enzyme-adapter-preact --dev
. Use it like this in ES6 projects:import Enzyme from 'enzyme';
import { Adapter } from 'enzyme-adapter-preact';
Enzyme.configure({ adapter: new Adapter() });
or like this in CommonJS projects:
const Enzyme = require('enzyme');
const { Adapter } = require('enzyme-adapter-preact');
Enzyme.configure({ adapter: new Adapter() });