aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/test/render.test.tsx
blob: 097b93e49ce352af27d620c2cf69fae5e77e2d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { render } from "@testing-library/react";
import { StrictMode } from "react";
import { describe, it } from "vitest";
import { Main } from "../src/main";

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