8
저는 모카와 효소로 반응 성분을 테스트하고 있습니다. 여기효소가 onChange 이벤트를 시뮬레이트합니다.
class New extends React.Component {
// shortened for simplicity
handleChange(event) {
// handle changing state of input
const target = event.target;
const value = target.value;
const name = target.name
this.setState({[name]: value})
}
render() {
return(
<div>
<form onSubmit={this.handleSubmit}>
<div className="form-group row">
<label className="col-2 col-form-label form-text">Poll Name</label>
<div className="col-10">
<input
className="form-control"
ref="pollName"
name="pollName"
type="text"
value={this.state.pollName}
onChange={this.handleChange}
/>
</div>
</div>
<input className="btn btn-info" type="submit" value="Submit" />
</form>
</div>
)
}
}
그리고 시험한다 : 다음은 구성 요소 (물론 편의상 단축)입니다
it("responds to name change", done => {
const handleChangeSpy = sinon.spy();
const event = {target: {name: "pollName", value: "spam"}};
const wrap = mount(
<New handleChange={handleChangeSpy} />
);
wrap.ref('pollName').simulate('change', event);
expect(handleChangeSpy.calledOnce).to.equal(true);
})
내가 기대하고있는 <input>
상자에 사용자 유형의 텍스트가 handleChange
방법이 될 것입니다 때 라는. 위의 테스트는 다음과 같이 실패합니다.
AssertionError: expected false to equal true
+ expected - actual
-false
+true
at Context.<anonymous> (test/components/new_component_test.js:71:45)
무엇이 잘못 되었나요?
내가 명확히해야
편집, 내 목표는 방법 handleChange
가 호출하는지 테스트하는 것입니다. 어떻게해야합니까?
'sinon.spy (object, "method")'를 사용하여 객체의 메소드를 직접 스파이 할 수 있습니다. –