Does Jest support ES6 import/export?

后端 未结 7 829
情话喂你
情话喂你 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条回答
  •  眼角桃花
    2020-11-29 01:43

    I solved it with .default.

    Try var Validation = require('../src/components/validation/validation').default;

提交回复
热议问题