import { render } from "@testing-library/react"; import { expect, it, describe } from "vitest"; import { Card } from "./Card.component"; import { Text } from "@components/Typography/Text"; describe("Card", () => { describe("Snapshots", () => { it("should match snapshot", () => { const res = render( Card Title Here is some content within a panel ); expect(res).toMatchSnapshot(); }); }); });