summaryrefslogtreecommitdiffhomepage
path: root/frontend/src/App/app.test.tsx
blob: f6236cdc9338ba63753c36155fb24c79db2d63d2 (plain)
1
2
3
4
5
6
7
8
9
import { render } from "@/tests";
import { describe, it } from "vitest";
import App from ".";

describe("App", () => {
  it("should render without crash", () => {
    render(<App />);
  });
});