import { render } from "@testing-library/react"; import { Separator } from "."; import { describe, expect, it } from "vitest"; describe("Separator", () => { describe("should match the snapshot", () => { it("horizontal", () => { const component = render(

title

text

); expect(component.baseElement).toMatchSnapshot(); }); it("vertical", () => { const component = render(
test 1
test 2
); expect(component.baseElement).toMatchSnapshot(); }); }); });