In my React code, I listen for a FocusEvent, and perform a check on the type of the element that is being focused:
function onBlur(event) {
if(event.relatedTarget instanceof HTMLInputElement) { /* ... */ }
}
This works fine. I just don't seem able to write a proper unit test for it though... I figured I'd be able to call the onBlur
method as follows:
onBlur({ relatedTarget: new HTMLInputElement() });
...but unfortunately, that results in an error:
TypeError: Illegal constructor
I'm using Jest and Enzyme (which I think uses jsdom?), if that matters.
How best to approach this?
Using this you can mock your element:
If you need to add more behaviour then you can just add it to object a.