The `jest` unit tests fail when run in node 7.7 with the error that the global `L10N` is not available. #### Reproduce * install node 7.7 * git clone https://github.com/devtools-html/debugger.html.git * yarn * yarn test I like using [nvm] so that i can install a version `nvm install 7.7` and then test #### Issue We setup `global.L10N` [here]. It's possible this has to do with how Jest uses VM contexts. <img src='https://shipusercontent.com/d31802c998fd9bd217bedcdba224a2f2/Screen%20Shot%202017-04-25%20at%2011.29.04%20AM.png' title='Screen Shot 2017-04-25 at 11.29.04 AM.png' width=1105> [nvm]: https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=nvm+node [here]: https://github.com/devtools-html/debugger.html/blob/master/src/test/tests-setup.js
The
jestunit tests fail when run in node 7.7 with the error that the globalL10Nis not available.Reproduce
I like using nvm so that i can install a version
nvm install 7.7and then testIssue
We setup
global.L10Nhere. It's possible this has to do with how Jest uses VM contexts.