thousands-cpu-33428
07/02/2022, 3:26 PMjavascript
import Post from "../../components/feed/Post";
const postData: PostData = {
title: "This is a post title",
body: "This is a post body",
userName: "userName",
subReddit: "subReddit",
dateSubmitted: new Date(),
voteCount: 1,
commentCount: 1,
};
describe("<Post>", () => {
it("mounts", () => {
cy.mount(<Post {...postData} />);
});
});