Last active
September 25, 2015 13:55
-
-
Save gajus/d8710a313b8134422989 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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