我有一个React组件,我正在使用Enzyme进行测试,例如,看起来像这样:
import React, {Component} from 'react'
class Foo extends Component {
constructor(props) {
super(props)
this.showContents = this.showContents.bind(this)
}
showContents() {
this.button.classList.toggle("active")
this.button.nextElementSibling.classList.toggle("show")
this.props.onRequestShowContents()
}
render() {
return (
<div className="wrapper">
<button ref={(ref) => this.button = ref} onClick={this.showContents}>Click to view contents</button>
<div className="panel">
{this.props.contents}
</div>
</div>
)
}
}
export default Foo
我正在使用Mocha / Chai / Enzyme编写一些单元测试,我想模拟按钮按下来检查我的道具func被调用。
我的基本酶测试看起来像这样:
import React from 'react'
import { shallow } from 'enzyme'
import Foo from '../components/Foo'
import chai from 'chai'
import expect from 'expect'
var should = chai.should()
function setup() {
const props = {
onRequestShowContents: expect.createSpy(),
contents: null
}
const wrapper = shallow(<Foo {...props} />)
return {
props,
wrapper
}
}
describe('components', () => {
describe('Foo', () => {
it('should request contents on button click', () => {
const { props, wrapper } = setup()
const button = wrapper.find('button')
button.props().onClick() //this line causes the error
props.onRequestShowContents.calls.length.should.equal(1)
})
})
})
有什么方法可以调整测试或我的组件代码,以避免在点击处理程序中访问this.button
时出错?我得到“TypeError:无法读取未定义的属性'classList'。”
我希望将其保留为浅渲染单元测试,并且不希望使用mount深度渲染此组件,这需要使用类似浏览器的env,例如jsdom。
感谢。
答案 0 :(得分:3)
我认为这是不可能的。
浅层渲染possible duplicate没有ref
属性的文档。但是挂载渲染docs有它。
另外,您可以查看docs。
在我看来,要不使用装载渲染,而不是访问classList
和nextElementSibling
,请设置相应的状态变量并根据此变量显示所需的classNames。