10 lines
269 B
JavaScript
10 lines
269 B
JavaScript
import { configure, mount, render, shallow } from 'enzyme';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
import React from 'react';
|
|
|
|
configure({ adapter: new Adapter() });
|
|
|
|
global.shallow = shallow;
|
|
global.render = render;
|
|
global.mount = mount;
|
|
global.React = React;
|