Files
cadhub/app/web/src/components/InputText/InputText.test.js
2021-05-01 07:32:21 +10:00

12 lines
225 B
JavaScript

import { render } from '@redwoodjs/testing'
import InputText from './InputText'
describe('InputText', () => {
it('renders successfully', () => {
expect(() => {
render(<InputText />)
}).not.toThrow()
})
})