1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-27 10:07:22 +00:00
bazarr/frontend/test/render.test.tsx
2022-03-29 01:10:24 +08:00

9 lines
232 B
TypeScript

import { render } from "@testing-library/react";
import { describe, it } from "vitest";
import { Entrance } from "../src";
describe("render test", () => {
it("render without crashing", () => {
render(<Entrance />);
});
});