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