React项目中npm run jest 后 import 组件时报错:Test suite failed to run

报错如下图所示:
React项目中npm run jest 后 import 组件时报错:Test suite failed to run_第1张图片
image.png

解决方式:

1,安装Babel转换器: npm install babel-jest @babel/core @babel/preset-env -D
2,在项目根目录下新建一个.babelrc的文件,配置如下所示。

{
    "presets": [
        [
            "@babel/preset-env", {
                 "targets": {
                        "node":"current"
                   }
             }
        ]
    ]
}

3,再重新执行 =》npm run test
React项目中npm run jest 后 import 组件时报错:Test suite failed to run_第2张图片
image.png

就可以执行成功了。

你可能感兴趣的:(React项目中npm run jest 后 import 组件时报错:Test suite failed to run)