Back to Enzyme

API Reference

docs/api/README.md

2.9.1405 B
Original Source

API Reference

Shallow Rendering

jsx
import { shallow } from 'enzyme';

const wrapper = shallow(<MyComponent />);
// ...

Full Rendering

jsx
import { mount } from 'enzyme';

const wrapper = mount(<MyComponent />);
// ...

Static Rendering

jsx
import { render } from 'enzyme';

const wrapper = render(<MyComponent />);
// ...