Does Jest support ES6 import/export?

后端 未结 7 855
情话喂你
情话喂你 2020-11-29 01:21

If I use import/export from ES6 then all my Jest tests fail with error:

Unexpected reserved word

I convert my object un

7条回答
  •  猫巷女王i
    2020-11-29 01:41

    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"]
    }
    

提交回复
热议问题