it('should not focus on input if autoFocus is false', () => {
    const { unmount } = render(mockItem({ autoFocus: false }));
    expect(document.activeElement?.tagName).to.equal('BODY');
    unmount();
  });