enzyme-adapter-inferno

1.3.1 • Public • Published

enzyme-adapter-inferno

Adapter to configure enzyme to test Inferno components

Still in development ⚠️

This adapter is missing features:

  • no shallow rendering
  • no support for context
  • no support for attachTo

Installation

npm install --save-dev enzyme-adapter-inferno

Usage

Before you run tests, configure enzyme with the adapter:

import { configure } from 'enzyme'
import InfernoEnzymeAdapter from 'enzyme-adapter-inferno'
 
configure({ adapter: new InfernoEnzymeAdapter() })

Then use enzyme as you would with a React component:

import InfernoComponent from 'inferno-component'
import { mount } from 'enzyme'
 
const wrapper = mount(Component)
wrapper.setProps({someProp: 'value'})

Readme

Keywords

none

Package Sidebar

Install

npm i enzyme-adapter-inferno

Weekly Downloads

42

Version

1.3.1

License

MIT

Unpacked Size

175 kB

Total Files

24

Last publish

Collaborators

  • eddyerburgh