mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
12 lines
401 B
Handlebars
12 lines
401 B
Handlebars
import * as React from "react";
|
|
import {render} from "@testing-library/react";
|
|
import userEvent from "@testing-library/user-event";
|
|
import { {{capitalize componentName}} } from "../src";
|
|
|
|
describe("{{capitalize componentName}}", () => {
|
|
test("should render correctly", () => {
|
|
const wrapper = render(<{{capitalize componentName}} />);
|
|
|
|
expect(() => wrapper.unmount()).not.toThrow();
|
|
});
|
|
}); |