import { NavigationContainer } from "@react-navigation/native" import { render } from "@testing-library/react-native" import { Text } from "./Text" import { ThemeProvider } from "../theme/context" /* This is an example component test using react-native-testing-library. For more * information on how to write your own, see the documentation here: * https://callstack.github.io/react-native-testing-library/ */ const testText = "Test string" describe("Text", () => { it("should render the component", () => { const { getByText } = render( , ) expect(getByText(testText)).toBeDefined() }) })