我正在尝试为 React 组件编写mocha测试。基本上,组件需要呈现一个 <a> 标签,其 href 设置为传入的属性中的一个值。问题是组件可以以不可预知的顺序呈现多个 <a> 标签,并且只有一个标签必须有正确的href。
以下是我真实代码的精简版,但没有一个测试通过:
const TestComponent = function TestComponent(props) {
const { myHref } = props;
return (
<div>
<a href="http://example.com">Link 1</a><br />
<a href={myHref}>Link 2</a><br />
<a href="http://example.com">Link 3</a>
</div>
);
};
TestComponent.propTypes = {
myHref: React.PropTypes.string.isRequired
};
describe('<TestComonent />', () => {
it('renders link with correct href', () => {
const myHref = 'http://example.com/test.htm';
const wrapper = Enzyme.render(
<TestComponent myHref={myHref} />
);
expect(wrapper).to.have.attr('href', myHref);
});
it('renders link with correct href 2', () => {
const myHref = 'http://example.com/test.htm';
const wrapper = Enzyme.render(
<TestComponent myHref={myHref} />
);
expect(wrapper.find('a')).to.have.attr('href', myHref);
});
});