import React from 'react'; import renderer from 'react-test-renderer'; import Contacts from './Contacts'; describe('Contacts', () => { const props = { contacts: { email: '#', twitter: '#', vkontakte: '#', github: '#', rss: '#', telegram: '#' } }; it('renders correctly', () => { const tree = renderer.create().toJSON(); expect(tree).toMatchSnapshot(); }); });