Files
dcs-retribution/client/src/App.test.tsx
Dan Albert 326291e708 Fix the react test.
It's still a useless test, but now it passes.
2022-10-09 12:46:05 +02: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>
);
});