mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-30 23:33:15 +01:00
30 lines
769 B
TypeScript
30 lines
769 B
TypeScript
|
import React from "react";
|
||
|
import renderer from "react-test-renderer";
|
||
|
|
||
|
import { StaticQuery, useStaticQuery } from "gatsby";
|
||
|
|
||
|
import * as mocks from "@/mocks";
|
||
|
|
||
|
import PostTemplate from "./PostTemplate";
|
||
|
|
||
|
const mockedStaticQuery = StaticQuery as jest.Mock;
|
||
|
const mockedUseStaticQuery = useStaticQuery as jest.Mock;
|
||
|
|
||
|
describe("PostTemplate", () => {
|
||
|
const props = {
|
||
|
data: {
|
||
|
markdownRemark: mocks.markdownRemark,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
beforeEach(() => {
|
||
|
mockedStaticQuery.mockImplementationOnce(({ render }) => render(mocks.siteMetadata));
|
||
|
mockedUseStaticQuery.mockReturnValue(mocks.siteMetadata);
|
||
|
});
|
||
|
|
||
|
it("renders correctly", () => {
|
||
|
const tree = renderer.create(<PostTemplate {...props} />).toJSON();
|
||
|
expect(tree).toMatchSnapshot();
|
||
|
});
|
||
|
});
|