How can I mock an `instanceof` test?

3.1k Views Asked by At

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?

3

There are 3 best solutions below

6
On BEST ANSWER

Using this you can mock your element:

var a = document.createElement('input')
a instanceof HTMLInputElement // returns true

If you need to add more behaviour then you can just add it to object a.

1
On

This will evaluate to true:

document.createElement('input') instanceof HTMLInputElement
1
On

One more approach is to change the way to test you input element. You can use tagName which should be 'INPUT' string:

function onBlur(event) {
    if(event.relatedTarget.tagName === 'INPUT') { /* ... */ }
}

onBlur({ relatedTarget: {tagName: 'INPUT'} });