J
J
Joirvy2019-05-25 01:43:39
React
Joirvy, 2019-05-25 01:43:39

What value to pass to the method with SyntheticEvent?

I need to test a method in a component:

showForm = (event: SyntheticEvent<*>) => {
    event.preventDefault();
    this.setState(() => ({ formVisible: true }));
  }

It works when you click on the "a" tag.
I am using jest and enzyme. What needs to be passed to the method call for it to work correctly?
it('check showForm method', () => {
    const wrapper = shallow(<Contacts {...props} />);
    wrapper.setState({ formVisible: false });
    wrapper.instance().showForm({ SynteticEvent });
    expect(wrapper.state('formVisible')).toEqual(true);
  });

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Spirin, 2019-05-25
@BeatTimy

const syntheticEvent = (target) => ({
  target,
  reventDefault: jest.fn(),
  stopPropagation: jest.fn(),
});

const event = syntheticEvent();

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question