| 1 2 3 4 5 6 7 8 9 10 | 24x 24x 24x 24x 24x 24x | const Enzyme = require('enzyme');
const Adapter = require('enzyme-adapter-react-16');
const matchers = require('./matchers');
Enzyme.configure({ adapter: new Adapter() });
require('jest-enzyme');
expect.extend(matchers());
|