This is my Post.cy.tsx for the component test: ```...
# component-testing
t
This is my Post.cy.tsx for the component test:
Copy code
javascript
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} />);
  });
});