feat(v1): add basic backend and frontend
This commit is contained in:
9
frontend/src/App.real-render.test.jsx
Normal file
9
frontend/src/App.real-render.test.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { render, screen } from "@testing-library/react";
|
||||
import App from "./App.jsx";
|
||||
|
||||
describe("App real render", () => {
|
||||
it("mounts without mocking third-party components", () => {
|
||||
render(<App />);
|
||||
expect(screen.getByText("Spatial Image Enhancer Pro")).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user