反应单元测试 - 如何模拟复选框已选中

时间:2016-03-02 04:35:22

标签: unit-testing reactjs

我是简单的html复选框,并尝试模拟已检查的事件。

这个有效

`checkbox.checked="true";`

这个没有用

`TestUtils.Simulate.change(checkbox,{target:{checked:true}});`

包含受控组件输入文本框,textbox.value='test'将不会模拟用户行为。相反TestUtils.Simulate.change(inputField,{target:{value:'sahas'}}); 做得很好。 同样,想知道什么是复选框的正确方法..

0 个答案:

没有答案