mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-08 15:57:36 +08: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 />);
|
|
});
|
|
});
|