10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
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();
|
|
});
|
|
});
|