Answer the question
In order to leave comments, you need to log in
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('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
const syntheticEvent = (target) => ({
target,
reventDefault: jest.fn(),
stopPropagation: jest.fn(),
});
const event = syntheticEvent();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question