Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 336 Bytes

Enzyme.md

File metadata and controls

9 lines (7 loc) · 336 Bytes

.simulate(event[, mock]) => Self

参数 event: 触发的事件(例如点击事件: 'click') mock: 传入事件的参数(例如:wrapper('change', {target: { value: '3'}})

Note: 例如在antd中,onChange传入的不是event事件对象,而是直接传入一个值,那么应该这样写: wrapper('change', 3)