【发布时间】:2020-05-09 19:00:22
【问题描述】:
我正在使用 jest:24.9.0 没有任何配置,从 create-react-app 全局安装。在这些文件中,我使用的是 es6 模块。使用"test": "react-scripts test"时没有报错
但是,当我将 jest 与 "test": "jest --config jest.config.js", 一起使用时,我看到以下错误。
FAIL src/configuration/notifications.test.js
● Test suite failed to run
/var/www/management/node/src/configuration/notifications.test.js:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){import notifications from './notifications';
^^^^^^
SyntaxError: Cannot use import statement outside a module
【问题讨论】:
标签: javascript reactjs jestjs create-react-app