UNPKG

kitten-components

Version:
10 lines (8 loc) 315 B
import Enzyme, { shallow, render, mount } from 'enzyme' import Adapter from 'enzyme-adapter-react-16' // React 16 Enzyme adapter Enzyme.configure({ adapter: new Adapter() }) // Make Enzyme functions available in all test files without importing global.shallow = shallow global.render = render global.mount = mount