feat(v1): add basic backend and frontend

This commit is contained in:
2026-07-09 00:37:41 +03:30
parent d9eedb3d8e
commit ae240e7ac1
54 changed files with 5829 additions and 0 deletions

View 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();
});
});