diff --git a/webapp/src/index.test.tsx b/webapp/src/index.test.tsx new file mode 100644 index 0000000000..07b0721c5e --- /dev/null +++ b/webapp/src/index.test.tsx @@ -0,0 +1,20 @@ +import { describe, expect } from "vitest"; +import { render } from "@testing-library/react"; +import { Provider } from "react-redux"; +import { StyledEngineProvider } from "@mui/material"; +import App from "./components/App"; +import store from "./redux/store"; + +describe("Application Render", () => { + test("renders the App component with providers", () => { + const { getByText } = render( + + + + + , + ); + + expect(getByText("Antares Web")).toBeInTheDocument(); + }); +});