(notes: string)
| 23 | }; |
| 24 | |
| 25 | const setNotes = async (notes: string) => { |
| 26 | await userEvent.clear(screen.getByRole('textbox', {name: 'Notes'})); |
| 27 | await userEvent.type(screen.getByRole('textbox', {name: 'Notes'}), notes); |
| 28 | }; |
| 29 | |
| 30 | it('renders default fields', async () => { |
| 31 | render( |
no test coverage detected