我想测试react-router-dom
,我不关心它是如何工作的,我只需要确保图书馆正在使用我的项目样板。
我正在测试这个组件
<Link to="/toto">
toto
</Link>
这是测试
it('it expands when the button is clicked', () => {
const renderedComponent = mount(<Wrapper>
<MemoryRouter initialEntries={['/']}>
<Demo />
</MemoryRouter>
</Wrapper>);
renderedComponent.find('a').simulate('click');
expect(location.pathname).toBe('toto');
});
为true
blank
如何测试react-router-dom
?
答案 0 :(得分:0)
如果您查看Link
的代码,就会看到以下代码:
handleClick = event => {
if (this.props.onClick) this.props.onClick(event);
if (
!event.defaultPrevented && // onClick prevented default
event.button === 0 && // ignore everything but left clicks
!this.props.target && // let browser handle "target=_blank" etc.
!isModifiedEvent(event) // ignore clicks with modifier keys
) {
event.preventDefault();
const { history } = this.context.router;
const { replace, to } = this.props;
if (replace) {
history.replace(to);
} else {
history.push(to);
}
}
};
所以,大概你发现Link
而不是a
并覆盖此方法以将值返回到您自己的回调中,您可以验证<Link>
上设置的路径,这不是&#39 ; t直接测试react-router
,但它会验证您在链接中设置的路径是否正确,这是您的测试似乎正在验证的内容。
类似于(未经测试的代码):
const link = renderedComponent.find(Link)
let result = null
link.handleClick = event => {
const { replace, to } = link.props;
if (replace) {
result = null //we are expecting a push
} else {
result = to
}
}
};
link.simulate('click')
expect(result).toEqual('/toto') // '/toto' or 'toto'?
我已经意识到上面的内容并不适用于浅层渲染,但是,如果您只是想检查to
属性是否正确,那么您可以使用{ {1}}。