()
| 100 | }) |
| 101 | |
| 102 | const Parent = () => { |
| 103 | const form = useAppForm(() => ({ |
| 104 | ...formOpts, |
| 105 | })) |
| 106 | |
| 107 | return <ChildForm form={form} title={'Testing'} /> |
| 108 | } |
| 109 | |
| 110 | const { getByLabelText, getByText } = render(() => <Parent />) |
| 111 | const input = getByLabelText('First Name') |
nothing calls this directly
no test coverage detected