Comment se concentrer sur une entrée dans la bibliothèque de tests

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