mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-09 08:17:42 +08:00
10 lines
232 B
TypeScript
10 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 />);
|
||
|
});
|
||
|
});
|