diff options
Diffstat (limited to 'frontend/src/App/app.test.tsx')
-rw-r--r-- | frontend/src/App/app.test.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/src/App/app.test.tsx b/frontend/src/App/app.test.tsx new file mode 100644 index 000000000..b5aea7e63 --- /dev/null +++ b/frontend/src/App/app.test.tsx @@ -0,0 +1,14 @@ +import { render } from "@/tests"; +import { StrictMode } from "react"; +import { describe, it } from "vitest"; +import App from "."; + +describe("App", () => { + it("should render without crash", () => { + render( + <StrictMode> + <App /> + </StrictMode> + ); + }); +}); |