我正在尝试使用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"
},
...