You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When transpiling to ES Modules (including setting "type": "module" in package.json) this breaks Jest tests with the error:
ReferenceError: module is not defined
It seems it doesn't take the targeted build type into account and just assumes it's building CommonJS modules. I know the options are limited and I'm not certain what the best solution is, but since ES Module adoption is only increasing it would be nice to have the option to not produce a broken build with Jest. Just wanted to at least raise the issue for consideration.
The text was updated successfully, but these errors were encountered:
When transpiling to ES Modules (including setting
"type": "module"
in package.json) this breaks Jest tests with the error:It seems it doesn't take the targeted build type into account and just assumes it's building CommonJS modules. I know the options are limited and I'm not certain what the best solution is, but since ES Module adoption is only increasing it would be nice to have the option to not produce a broken build with Jest. Just wanted to at least raise the issue for consideration.
The text was updated successfully, but these errors were encountered: