mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-27 10:07:22 +00:00
9 lines
232 B
TypeScript
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 />);
|
|
});
|
|
});
|