Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 406 Bytes

README.md

File metadata and controls

32 lines (19 loc) · 406 Bytes

API Reference

import { shallow } from 'enzyme';

const wrapper = shallow(<MyComponent />);
// ...
import { mount } from 'enzyme';

const wrapper = mount(<MyComponent />);
// ...
import { render } from 'enzyme';

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