Add tests for AircraftLayer.

This commit is contained in:
Dan Albert
2023-06-05 23:58:35 -07:00
committed by Raffson
parent 389d230ea3
commit 3b40aef70c
5 changed files with 121 additions and 26 deletions

View File

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