DEV Community

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

Collapse
 
apihlaja profile image
Antti Pihlaja

Wait a minute.. is document exposed by jest by default? Or how that works? 🤯

Collapse
 
antonmelnyk profile image
Anton Melnyk

It is exposed if you set

testEnvironment: 'jsdom'

as an option.