Skip to content

Latest commit

 

History

History

api

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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 />);
// ...