/* eslint-disable function-paren-newline, comma-dangle */ import React from 'react' import Input from '../Input' import renderWithTheme from '../../testHelper' describe('Input', () => { it('renders a Text Input', () => { const tree = renderWithTheme() expect(tree).toMatchSnapshot() }) it('renders a Pill Style Input', () => { const tree = renderWithTheme() expect(tree).toMatchSnapshot() }) it('renders a Input with a hidden label', () => { const tree = renderWithTheme() expect(tree).toMatchSnapshot() }) })