import React from 'react'; import { shallow } from 'enzyme'; import HintModal from './'; const noop = () => ({}); const hint = 'hint'; describe('HintModal', () => { it('should render correctly', () => { const wrapper = shallow( , ); expect(wrapper).toMatchSnapshot(); }); });