我正在使用react-helmet将元素添加到head元素。
<Helmet>
<title>title</title>
<meta name="description" content="description" />
<meta name="keywords" content="keywords" />
</Helmet>
我正在尝试像这样编写单元测试:
it('should render metadata', () => {
const wrapper = mount(<Metadata/>);
// this is not working.
expect(document.title).to.equal("title");
});
最佳答案
我自己想出了答案。我做了以下事情:
it('should render metadata', () => {
const wrapper = mount(<Metadata/>);
// this will return all the markup assigned to helmet
// which will get rendered inside head.
const helmet = Helmet.peek();
expect(helmet.title).to.equal("title");
});
这就是单元测试的窍门。