Как сосредоточиться на вводе в библиотеке тестирования

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