import { describe } from "vitest"; import { componentTestSuite, type ComponentTestSuiteConfig, } from "../utils/componentTestSuite"; import Section from "../../app/components/type/Section"; import TextBlock from "../../app/components/type/TextBlock"; type Props = React.ComponentProps; const config: ComponentTestSuiteConfig = { component: Section, name: "Section", props: { categoryName: "Decision making", showRail: true, children: ( ), } as Props, requiredProps: ["categoryName", "children"], testCases: { renders: true, accessibility: true, }, }; describe("Section", () => { componentTestSuite(config); });