mirror of https://github.com/morpheus65535/bazarr
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 />);
|
||
|
});
|
||
|
});
|