摘要:jsdom:dispatchEvent /的addEventListener似乎並沒有工作
我試圖測試陣營組件偵聽本機的DOM事件在其componentWillMount
。
我發現jsdom(@8.4.0
)在調度事件和添加事件偵聽器時無法按預期工作。
我可以提取的代碼最簡單的一點:
window.addEventListener('click',() => {
throw new Error("success")
})
const event = new Event('click')
document.dispatchEvent(event)
throw new Error('failure')
這將引發 「失敗」。
語境:
在上述的風險是一個XY problem,我想提供更多的上下文。
這是我試圖測試的組件的提取/簡化版本。 You can see it working on Webpackbin.
import React from 'react'
export default class Example extends React.Component {
constructor() {
super()
this._onDocumentClick = this._onDocumentClick.bind(this)
}
componentWillMount() {
this.setState({ clicked: false })
window.addEventListener('click', this._onDocumentClick)
}
_onDocumentClick() {
const clicked = this.state.clicked || false
this.setState({ clicked: !clicked })
}
render() {
return <p>{JSON.stringify(this.state.clicked)}</p>
}
}
這是我試圖寫的測試。
import React from 'react'
import ReactDOM from 'react-dom'
import { mount } from 'enzyme'
import Example from '../src/example'
describe('test',() => {
it('test',() => {
const wrapper = mount(<Example />)
const event = new Event('click')
document.dispatchEvent(event)
// at this point, I expect the component to re-render,
// with updated state.
expect(wrapper.text()).to.match(/true/)
})
})
只是爲了完整性,這裏是我的test_helper.js
它初始化jsdom:
import { jsdom } from 'jsdom'
import chai from 'chai'
const doc = jsdom('<!doctype html><html><body></body></html>')
const win = doc.defaultView
global.document = doc
global.window = win
Object.keys(window).forEach((key) => {
if (!(key in global)) {
global[key] = window[key]
}
})
繁殖情況:
我這裏有一個攝製情況:https://github.com/jbinto/repro-jsdom-events-not-firing
git clone https://github.com/jbinto/repro-jsdom-events-not-firing.git cd repro-jsdom-events-not-firing npm install npm test
'新window.Event( 「點擊」);'ermagerd。 'doc.createEvent('MouseEvents')。initEvent('click',true,true)'在jsdom中返回undefined ... 1.5hrs以找到您的答案O.o – Larry