import React from "react";
import { render } from "@testing-library/react";
import { Card } from "../";
describe("Card", () => {
it("default", () => {
const { asFragment } = render(Example Content);
expect(asFragment()).toMatchSnapshot();
});
it("with paddingSize set", () => {
const { asFragment } = render(Example Content);
expect(asFragment()).toMatchSnapshot();
});
it("with aspectRatio set", () => {
const { asFragment } = render(
Example Content
);
expect(asFragment()).toMatchSnapshot();
});
});