diff --git a/client/src/App.test.tsx b/client/src/App.test.tsx
index b20568d2..d97fd6ce 100644
--- a/client/src/App.test.tsx
+++ b/client/src/App.test.tsx
@@ -1,9 +1,12 @@
import App from "./App";
-import { render, screen } from "@testing-library/react";
-import React from "react";
+import { store } from "./app/store";
+import { render } from "@testing-library/react";
+import { Provider } from "react-redux";
-test("renders learn react link", () => {
- render();
- const linkElement = screen.getByText(/learn react/i);
- expect(linkElement).toBeInTheDocument();
+test("app renders", () => {
+ render(
+
+
+
+ );
});