bagaimana fokus keluar dari input di pustaka pengujian

// selecting the input element
const input = getByTestId('input');
// typing into the element
await userEvent.type(input, 'text');
// focus out
fireEvent.focusOut(input);
Perfect Pigeon