commons/admin/src/components/atoms/Form/InputGroup.test.tsx

11 lines
323 B
TypeScript

import React from 'react'
import { render } from '@testing-library/react'
import InputGroup from './InputGroup'
describe('InputGroup', () => {
it('renders without crashing', () => {
const { container } = render(<InputGroup>Hello</InputGroup>)
expect(container.firstChild).toBeInTheDocument()
})
})