If I use import/export from ES6 then all my Jest tests fail with error:
import/export
Unexpected reserved word
I convert my object un
It's a matter of adding stage-0 to your .babelrc file. Here is an example:
{ "presets": ["es2015", "react", "stage-0"], "plugins": ["transform-decorators-legacy"] }