/* eslint-disable function-paren-newline, comma-dangle */ import React from 'react' import renderWithTheme from '../../testHelper' import Text from '../Text' describe('Text', () => { it('renders a Text Element', () => { const tree = shallow( This is a test ) expect(tree).toMatchSnapshot() }) it('renders a Text Element with a text-align attribute', () => { const tree = shallow( This is a test ) expect(tree).toMatchSnapshot() }) it('renders a bold Text Element', () => { const tree = renderWithTheme( This is a test ) expect(tree).toMatchSnapshot() }) })