我有Customer.js.flow
类型文件。
当我运行 jest 时,它会因以下错误而失败:
Customer.js.flow:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){export type Customer = {
^^^^^^
SyntaxError: Unexpected token export
at transformAndBuildScript (node_modules/jest-runtime/build/transform.js:320:12)
即使我明确添加:
"transform": {
"^.+\\.js.flow$": "babel-jest",
"^.+\\.jsx?$": "babel-jest"
},
当我更改为时Customer.js.flow
,Customer.js
我不再有问题了