Skip to content

Instantly share code, notes, and snippets.

@darlanmendonca
Forked from giltayar/initializing-jsdom.js
Last active April 25, 2017 03:15
Show Gist options
  • Select an option

  • Save darlanmendonca/6182e9cc14f6453342809e14e5c9cec9 to your computer and use it in GitHub Desktop.

Select an option

Save darlanmendonca/6182e9cc14f6453342809e14e5c9cec9 to your computer and use it in GitHub Desktop.
const {JSDOM: Dom} = require('jsdom')
before(function () {
global.document = jsdom(`<!doctype html><html><body><div id="container"/></div></body></html>`)
global.window = document.defaultView
})
after(function () {
delete global.window
delete global.document
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment