import { render, RenderOptions, RenderResult } from '@testing-library/react' import { ReactElement, ReactNode } from 'react' /** * Custom render function that wraps components with common providers */ export function renderWithProviders( ui: ReactElement, options?: Omit ): RenderResult { function Wrapper({ children }: { children: ReactNode }) { return <>{children} } return render(ui, { wrapper: Wrapper, ...options }) } /** * Re-export everything from React Testing Library */ export * from '@testing-library/react' export { default as userEvent } from '@testing-library/user-event'