Files
cosmos-explorer/src/Explorer/QueryCopilot/PromptCard.test.tsx
2026-04-08 11:47:14 -05:00

20 lines
676 B
TypeScript

import { shallow } from "enzyme";
import React from "react";
import { PromptCard } from "./PromptCard";
describe("Prompt card snapshot test", () => {
it("should render properly if isSelected is true", () => {
const wrapper = shallow(
<PromptCard header="TestHeader" description="TestDescription" isSelected={true} onSelect={() => undefined} />,
);
expect(wrapper).toMatchSnapshot();
});
it("should render properly if isSelected is false", () => {
const wrapper = shallow(
<PromptCard header="TestHeader" description="TestDescription" isSelected={false} onSelect={() => undefined} />,
);
expect(wrapper).toMatchSnapshot();
});
});