To fix window is not being exposed to Jest, we create the window
object with jsdom.DOM()
.
For instance, we write
global.window = new jsdom.JSDOM().window;
global.document = window.document;
to create the window
object with jsdom.JSDOM().window
.
Then we get the document object with window.document
.