Files
cadhub/web/src/components/ProfileTextInput/ProfileTextInput.test.js
2020-11-05 06:47:55 +11:00

12 lines
253 B
JavaScript

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