12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
import { render } from '@redwoodjs/testing'
|
|
|
|
import InputTextForm from './InputTextForm'
|
|
|
|
describe('InputTextForm', () => {
|
|
it('renders successfully', () => {
|
|
expect(() => {
|
|
render(<InputTextForm />)
|
|
}).not.toThrow()
|
|
})
|
|
})
|