/* eslint-disable function-paren-newline, comma-dangle */
import React from 'react'
import Textarea from '../Textarea'
import ThemeWrapper from '../../theme/ThemeWrapper'
describe('Textarea', () => {
it('renders a Textarea Input', () => {
const tree = render()
expect(tree).toMatchSnapshot()
})
it('renders a Textarea Input with no label', () => {
const tree = render()
expect(tree).toMatchSnapshot()
})
it('renders a Textarea Input with a custom theme', () => {
const tree = render(
)
expect(tree).toMatchSnapshot()
})
})