最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React input onchange simulation not updating value using Jest and enzyme - Stack Overflow

programmeradmin2浏览0评论

I have a functional ponent as below

const Input = () => {
  const [value, updateValue] = useState("");
  return (
    <input
      type="text"
      id="input"
      value={value}
      onChange={(e) => {
        updateValue(e.target.value);
      }}
    />
  );
};

export default Input;

and test as below

const event = { target: { value: "Q" } };
input.simulate("change", event);
expect(input.prop("value")).toBe("Q");

the problem is that simulation of the event is not updating state. I tried wrapper.update() as well but it is not working.

you can run test here

I have a functional ponent as below

const Input = () => {
  const [value, updateValue] = useState("");
  return (
    <input
      type="text"
      id="input"
      value={value}
      onChange={(e) => {
        updateValue(e.target.value);
      }}
    />
  );
};

export default Input;

and test as below

const event = { target: { value: "Q" } };
input.simulate("change", event);
expect(input.prop("value")).toBe("Q");

the problem is that simulation of the event is not updating state. I tried wrapper.update() as well but it is not working.

you can run test here

Share Improve this question edited Sep 27, 2019 at 8:23 Soroush Chehresa 5,6981 gold badge16 silver badges30 bronze badges asked Sep 27, 2019 at 7:11 NIsham MahsinNIsham Mahsin 7661 gold badge9 silver badges22 bronze badges 1
  • Besides the @skyboyer answer, you should also have a look at testing-library./docs/react-testing-library/intro which simplifies very much the testing of ponents. – Gabriele Petrioli Commented Sep 27, 2019 at 7:48
Add a ment  | 

2 Answers 2

Reset to default 9

After ponent updated your input variable still points on old wrapper.

Wrappers(except root one) are immutable so you need to .find() element again.

So if you

const event = { target: { value: "Q" } };
input.simulate("change", event);
expect(wrapper.find("input").prop("value")).toBe("Q");

you will get it passed.

PS probably it's safer always avoid using intermediate variables while testing with Enzyme.

For those who got multiple inputs just like @NishamMahsin's case. I had the same issue and found the working solution from wrapper not updated after simulate('change'). #1999

In short:

.simulate('change', {target: {name: 'inputFirstName', value: 'value'}})

It took me quite a long time on this, so hope it helps someone here...

发布评论

评论列表(0)

  1. 暂无评论