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

title

text

); expect(component.baseElement).toMatchSnapshot(); }); }); });