feat: full app integration — all screens wired and working

This commit is contained in:
Yossi Elkrief
2026-03-02 13:02:50 +02:00
parent 47861de821
commit df394019cc
6 changed files with 93 additions and 44 deletions
+36
View File
@@ -0,0 +1,36 @@
import React, { PropsWithChildren } from 'react';
import { render, type RenderOptions } from '@testing-library/react-native';
import { NavigationContainer } from '@react-navigation/native';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { ThemeProvider } from '@/theme/ThemeContext';
type TestProvidersProps = PropsWithChildren<object>;
const TestProviders = ({ children }: TestProvidersProps) => (
<GestureHandlerRootView style={{ flex: 1 }}>
<SafeAreaProvider>
<ThemeProvider>{children}</ThemeProvider>
</SafeAreaProvider>
</GestureHandlerRootView>
);
const TestProvidersWithNavigation = ({ children }: TestProvidersProps) => (
<TestProviders>
<NavigationContainer>{children}</NavigationContainer>
</TestProviders>
);
interface RenderWithProvidersOptions extends Omit<RenderOptions, 'wrapper'> {
withNavigation?: boolean;
}
export const renderWithProviders = (
ui: React.ReactElement,
{ withNavigation, ...options }: RenderWithProvidersOptions = {},
) => {
return render(ui, {
...options,
wrapper: withNavigation ? TestProvidersWithNavigation : TestProviders,
});
};