import React from "react";
import { renderWithTheme } from "../../testHelpers";
import Text from "../../components/Text/Text";
it("renders correctly", () => {
const { asFragment } = renderWithTheme(pancake);
expect(asFragment()).toMatchInlineSnapshot(`
.c0 {
color: #452A7A;
font-size: 16px;
font-weight: 400;
line-height: 1.5;
}
pancake
`);
});