DEV Community

Discussion on: Things I learned after writing tests for JS and HTML page

Collapse
 
duranenmanuel profile image
Enmanuel Durán

Great article!

I am curious about one thing, how did you deal with all the unsupported features from jsdom such as MutationObserver, or the inability to access input fields by name without using querySelector like formName.inputName.value. Did you have to manually install polyfills for each or maybe you did something else?