Skip to content

Commit 19d5b8d

Browse files
committed
fix: path type
1 parent 1d2f0b1 commit 19d5b8d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

expo-app/__tests__/expo-app.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
// __tests__/App.test.js
21
import React from "react";
32
import { render } from "@testing-library/react-native";
4-
import App from "../app"; // Adjust the import based on your file structure
3+
import App from "../app";
54

65
test("renders correctly", () => {
7-
const { getByText } = render(<App />);
6+
const { getByText } = render(App);
87

98
// Check if a specific text or element is present in the component
109
expect(getByText("SplashScreen")).toBeTruthy();

0 commit comments

Comments
 (0)