Skip to content

Instantly share code, notes, and snippets.

@gajus
Last active September 25, 2015 13:55
Show Gist options
  • Save gajus/d8710a313b8134422989 to your computer and use it in GitHub Desktop.
Save gajus/d8710a313b8134422989 to your computer and use it in GitHub Desktop.
jsdom.env({
html: '<script>var filmData = {foo: "bar"};</script>',
features: {
ProcessExternalResources: true
},
done: (error, window) => {
if (error) {
throw new Error('Something is up!');
}
console.log('window.filmData', window.filmData);
window.close();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment