我正在使用ref编写组件的测试。我想模拟ref元素并更改一些属性,但不知道如何做。有什么建议吗?
// MyComp.jsx
class MyComp extends React.Component {
constructor(props) {
super(props);
this.getRef = this.getRef.bind(this);
}
componentDidMount() {
this.setState({elmHeight: this.elm.offsetHeight});
}
getRef(elm) {
this.elm = elm;
}
render() {
return <div>
<span ref={getRef}>
Stuff inside
</span>
</div>
}
}
// MyComp.test.jsx
const comp = mount(<MyComp />);
// Since it is not in browser, offsetHeight is 0
// mock ref offsetHeight to be 100 here... How to?
expect(comp.state('elmHeight')).toEqual(100);
答案 0 :(得分:4)
根据以下内容的讨论,这就是解决方案 https://github.com/airbnb/enzyme/issues/1937
可以使用非箭头函数对类进行猴子修补,其中“ this”关键字将传递到正确的作用域。
function mockGetRef(ref:any) {
this.contentRef = {offsetHeight: 100}
}
jest.spyOn(MyComp.prototype, 'getRef').mockImplementationOnce(mockGetRef);
const comp = mount(<MyComp />);
expect(comp.state('contentHeight')).toEqual(100);
答案 1 :(得分:0)
您可以使用Object.defineProperty来模拟ref
`Object.defineProperty(Element.prototype, 'offsetHeight', {
value: 100,
writable: true,
configurable: true
});`