0

我正在尝试使用react-tool-box. 我也尝试Jest用于测试,

但得到这个测试失败。它看起来像 es6 配置问题Jest

● 测试套件无法运行

/home/user/project/react-tool-box/react-toolbox-example/src/frontend/components/PurpleAppBar.js: Unexpected token (5:34)
    3 | import theme from './PurpleAppBar.css';
    4 | 
  > 5 | const PurpleAppBar = ({ children, ...other }) => (
      |                                   ^
    6 |   <AppBar {...other} theme={theme}>
    7 |     Hello developer!
    8 |     {children}

我的jest.config.js

{
"moduleFileExtensions": [
    "js",
    "jsx"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"moduleNameMapper": {
    "App": "<rootDir>/src/frontend/components/App.js"
}

}

我的.bablerc

 {
  "presets": [
     "react",
     "es2015"
  ]
}

package.json脚本:

...    
"scripts": {
        "start": "node_modules/.bin/cross-env NODE_ENV=development node_modules/.bin/webpack-dev-server --colors --config webpack.config.js",
        "build": "node_modules/.bin/cross-env NODE_ENV=production UV_THREADPOOL_SIZE=100 webpack --config webpack.config.js",
        "deploy": "gh-pages -d build",
        "test": "jest --config jest.config.js"
      },
...
4

1 回答 1

0

我在这里找到了答案。

将“stage-3”添加到 .babelrc:

{
  "presets": ["es2015", "stage-3", "react"]
}
于 2017-04-08T09:43:39.230 回答