import { render } from "@testing-library/react"; import React from "react"; import { Sandbox } from "./card.stories"; describe("Card", () => { it("should render the card component", () => { const { getByRole } = render(); const title = getByRole("heading"); const body = getByRole("article"); expect(title).toHaveTextContent("label"); expect(body).toHaveTextContent("test"); }); });