import { shallow } from "enzyme"; import React from "react"; import { NotebookMetadataComponent, NotebookMetadataComponentProps } from "./NotebookMetadataComponent"; describe("NotebookMetadataComponent", () => { it("renders un-liked notebook", () => { const props: NotebookMetadataComponentProps = { data: { id: "id", name: "name", description: "description", author: "author", thumbnailUrl: "thumbnailUrl", created: "created", gitSha: "gitSha", tags: ["tag"], isSample: false, downloads: 0, favorites: 0, views: 0, newCellId: undefined, policyViolations: undefined, pendingScanJobIds: undefined, }, isFavorite: false, downloadButtonText: "Download", onTagClick: undefined, onDownloadClick: undefined, onFavoriteClick: undefined, onUnfavoriteClick: undefined, onReportAbuseClick: undefined, }; const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); it("renders liked notebook", () => { const props: NotebookMetadataComponentProps = { data: { id: "id", name: "name", description: "description", author: "author", thumbnailUrl: "thumbnailUrl", created: "created", gitSha: "gitSha", tags: ["tag"], isSample: false, downloads: 0, favorites: 0, views: 0, newCellId: undefined, policyViolations: undefined, pendingScanJobIds: undefined, }, isFavorite: true, downloadButtonText: "Download", onTagClick: undefined, onDownloadClick: undefined, onFavoriteClick: undefined, onUnfavoriteClick: undefined, onReportAbuseClick: undefined, }; const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); // TODO Add test for metadata display });