@muvehealth/fixins
Version:
Component library for Muvehealth
18 lines (16 loc) • 417 B
Flow
/* eslint-disable function-paren-newline, comma-dangle */
import React from 'react'
import renderWithTheme from '../../testHelper'
import InputWrapper from '../MSInputWrapper'
describe('MSInputWrapper', () => {
it('renders a MSInputWrapper', () => {
const tree = renderWithTheme(
<InputWrapper
py={1}
px={1}
tabIndex="-1"
/>
)
expect(tree).toMatchSnapshot()
})
})