我正在使用Gatsby和Jest进行测试。默认情况下,Gatsby处理GraphQL数据获取,并且据我发现,它没有提供任何在单元测试中测试其GraphQL查询的解决方案。
有没有办法做到这一点?现在,我只是在模拟查询,以测试组件本身,但是我希望能够测试查询的工作而无需在GraphiQL中手动进行。
这是我的代码:
import PropTypes from 'prop-types';
import React from 'react';
const PageContent = ({ data: { markdownRemark: { html } } }) => (
<div>
{html}
</div>
);
PageContent.propTypes = {
data: PropTypes.shape({
markdownRemark: PropTypes.shape({
html: PropTypes.string.isRequired,
}).isRequired,
}).isRequired,
};
export const query = graphql`
query PageContent($id: ID!) {
markdownRemark(frontmatter: { id: $id }) {
html
}
}
`;
export default PageContent;
import PageContent from 'templates/PageContent';
describe("<PageContent>", () => {
let mountedComponent;
let props;
const getComponent = () => {
if (!mountedComponent) {
mountedComponent = shallow(<PageContent {...props} />);
}
return mountedComponent;
};
beforeEach(() => {
mountedComponent = undefined;
props = {
data: {
markdownRemark: {
html: '<div>test</div>',
},
},
};
});
it("renders a <div> as the root element", () => {
expect(getComponent().is('div')).toBeTruthy();
});
it("renders `props.data.markdownRemark.html`", () => {
expect(getComponent().contains(props.data.markdownRemark.html)).toBeTruthy();
});
});
答案 0 :(得分:0)
我写了plugin that enables testing of Gatsby components with GraphQL queries。如果安装了它,则可以通过替换模拟数据来检索实际的Graph QL数据
data: {
markdownRemark: {
html: '<div>test</div>',
},
}
使用
data: await getPageQueryData(`/path/to/your/page`)
然后它将从最近一次构建项目(使用gatsby build
或gatsby develop
)中提取数据