2020-05-31 11:47:57 +00:00
|
|
|
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
|
|
|
// allows you to do things like:
|
|
|
|
// expect(element).toHaveTextContent(/react/i)
|
|
|
|
// learn more: https://github.com/testing-library/jest-dom
|
|
|
|
import '@testing-library/jest-dom/extend-expect';
|
2020-06-10 13:41:41 +00:00
|
|
|
|
2020-06-12 15:57:30 +00:00
|
|
|
import {configure} from 'enzyme';
|
2020-06-10 13:41:41 +00:00
|
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
|
|
|
2020-06-12 15:57:30 +00:00
|
|
|
configure({adapter: new Adapter()});
|