import { describe } from "vitest"; import { componentTestSuite, type ComponentTestSuiteConfig, } from "../utils/componentTestSuite"; import Separator from "../../app/components/utility/Separator"; type Props = React.ComponentProps; const config: ComponentTestSuiteConfig = { component: Separator, name: "Separator", props: {} as Props, testCases: { renders: true, accessibility: true, }, }; describe("Separator", () => { componentTestSuite(config); });