import { render, screen } from '@testing-library/react'; import withId from '.'; describe('withId', () => { type ButtonProps = { id?: string; }; const Button = withId((props) => ( )); it('should provide id', () => { render(