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

11 lines
288 B
TypeScript

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