我的jest测试用例类似于:
test('should update state.focus', async () => {
let component = getComponent()
component.setState({focus: true})
expect(component.state().focus).toEqual(true)
component.instance().handleBlur()
await expect(component.state().focus).toEqual(false)
})这在本地开发环境中运行得很好。然而,它在竹子上失败了,造成了以下错误:
test('should update state.focus', async function () {
^^^^^
SyntaxError: missing ) after argument list
at ScriptTransformer._transformAndBuildScript (node_modules/jest-runtime/build/ScriptTransformer.js:289:17)
at handle (node_modules/worker-farm/lib/child/index.js:41:8)
at process.<anonymous> (node_modules/worker-farm/lib/child/index.js:47:3)
at emitTwo (events.js:106:13)我用的是jest - 20.0.3和babel-jest 20.0.3
发布于 2017-07-14 12:26:11
我也有同样的问题。我可以通过安装babel-preset-es2017包来解决它,然后在.babelrc中使用它。
{
"presets": ["es2017"]
}https://stackoverflow.com/questions/44126011
复制相似问题