import React from 'react' import renderer from 'react-test-renderer' import { MediaSection } from './index' describe('MediaSection', () => { it('should render MediaSection', () => { const section = default section const renderedSection = renderer.create(section).toJSON() expect(renderedSection).toMatchSnapshot() }) })