const nameInput = screen.getByLabelText(/name/i);
// Assert updated display value expect(screen.getByDisplayValue('Bob')).toBeInTheDocument(); );
// Edit the value await userEvent.clear(nameInput); await userEvent.type(nameInput, 'Bob');
const nameInput = screen.getByLabelText(/name/i);
// Assert updated display value expect(screen.getByDisplayValue('Bob')).toBeInTheDocument(); );
// Edit the value await userEvent.clear(nameInput); await userEvent.type(nameInput, 'Bob');