// Assert initial display value expect(screen.getByDisplayValue('Alice')).toBeInTheDocument();
const nameInput = screen.getByLabelText(/name/i);
// Assert updated display value expect(screen.getByDisplayValue('Bob')).toBeInTheDocument(); );