summaryrefslogtreecommitdiffhomepage
path: root/frontend/src/App/app.test.tsx
blob: b5aea7e637f4fa9cb628c24c760927d1a16902d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
    );
  });
});