我有一个非常简单的 React.js 组件,它用“阅读更多”/“阅读更少”功能装饰一长串标记。
我对 Jest 进行了一些测试,但是,我无法断言 DOM 元素的高度正在增加到原始内容的大小。
在 Jest 测试环境中,我对 getDOMNode().scrollHeight 的调用似乎没有返回任何内容。
这是包含代码和未通过测试的存储库的链接:https ://github.com/mguterl/react-jest-dom-question
以下是说明相同问题的代码和测试的简化版本:
简化代码
var ReadMore = React.createClass({
getInitialState: function() {
return {
style: {
height: '0px'
}
}
},
render: function() {
return (
<div>
<div ref='content' className='read-more__content' style={this.state.style} dangerouslySetInnerHTML={{__html: this.props.content}} />
<a onClick={this.expand} href='#'>Expand</a>
</div>
);
},
expand: function() {
// This call to scrollHeight doesn't return anything when testing.
var height = this.refs.content.getDOMNode().scrollHeight;
this.setState({
style: {
height: height
}
});
}
});
测试
jest.dontMock('../ReadMore');
global.React = require('react/addons');
var TestUtils = React.addons.TestUtils;
var ReadMore = require('../ReadMore');
describe('ReadMore', function() {
var readMore;
var content;
var link;
beforeEach(function() {
readMore = TestUtils.renderIntoDocument(
<ReadMore collapsedHeight='0px' content='<p>Hello World</p>' />
);
content = TestUtils.findRenderedDOMComponentWithClass(
readMore, 'read-more__content');
link = TestUtils.findRenderedDOMComponentWithTag(
readMore, 'a');
});
it('starts off collapsed', function() {
expect(content.getDOMNode().getAttribute('style')).toEqual('height:0px;');
});
it('expands the height to fit the content', function() {
TestUtils.Simulate.click(link);
expect(content.getDOMNode().getAttribute('style')).toEqual('height:100px;');
});
});