dcs_liberation/client/src/App.test.tsx
Dan Albert 6295f3fd71 Fix the react test.
It's still a useless test, but now it passes.
2022-10-07 13:33:53 -07:00

13 lines
258 B
TypeScript

import App from "./App";
import { store } from "./app/store";
import { render } from "@testing-library/react";
import { Provider } from "react-redux";
test("app renders", () => {
render(
<Provider store={store}>
<App />
</Provider>
);
});