import { RenderOptions, render } from "@testing-library/react-native"; import { PropsWithChildren, ReactElement } from "react"; import { Provider } from "react-redux"; import { setupStore, RootState } from "@/app/store"; import { Product } from "@/lib/product"; import React from "react"; export interface ExtendedRenderOptions extends Omit { preloadedState?: Partial; store?: any; // TODO } export function renderWithProviders( ui: ReactElement, preloadedState = { products: [] as Product [] }, extendedRenderOptions: ExtendedRenderOptions = {}, ) { const { // Automatically create a store instance if no store was passed in store = setupStore(preloadedState as Partial), ...renderOptions } = extendedRenderOptions; const Wrapper = ({ children }: PropsWithChildren) => ( {children} ); // Return an object with the store and all of RTL's query functions return { store, ...render(ui, { wrapper: Wrapper, ...renderOptions }) }; }