bazarr/frontend/test/render.test.tsx

10 lines
232 B
TypeScript
Raw Normal View History

2022-03-28 17:10:24 +00:00
import { render } from "@testing-library/react";
import { describe, it } from "vitest";
import { Entrance } from "../src";
describe("render test", () => {
it("render without crashing", () => {
render(<Entrance />);
});
});