import { ReactElement } from 'react' import { render, RenderOptions } from '@testing-library/react' /** * Custom render function that wraps components with common providers */ export function renderWithProviders( ui: ReactElement, options?: Omit ) { return render(ui, { ...options }) } // Re-export everything from @testing-library/react export * from '@testing-library/react' // Override render with our custom version export { renderWithProviders as render }