import React from 'react'; import { shallow } from 'enzyme'; import Metadata from 'components/Metadata'; describe('Metadata', () => { test('rendering', () => { const component = shallow( ); expect(component).toMatchSnapshot(); }); test('rendering with a title', () => { const component = shallow( ); expect(component).toMatchSnapshot(); }); });