import React from 'react' import renderer from 'react-test-renderer' import Container from '.' describe('Container', () => { it('Rendering Container without crashing', () => { const tree = renderer.create(Text 2).toJSON() expect(tree).toMatchSnapshot() }) })