【发布时间】:2021-12-15 02:03:39
【问题描述】:
出于某种原因,我的笑话配置不适用于最新版本的d3-path@3.0.1。它适用于版本2.0.0。我想这与d3-path 切换到 ESM 有关,但我已经在自己的代码中使用 ES6,所以我不明白为什么它突然不再工作了。我安装了以下软件包:
"dependencies": {
"d3-path": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-jest": "^27.3.1",
"jest": "^27.3.1"
}
我的babel.config.js:
module.exports = {
presets: [['@babel/preset-env', {targets: {node: 'current'}}]],
};
我的index.js:
import { path } from 'd3-path'
export default () => path()
测试文件:
import fn from '../src/index.js'
describe('test', () => {
it('works', () => {
fn()
expect(2 + 2).toBe(4)
})
})
错误信息:
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,jest){export {default as path} from "./path.js";
^^^^^^
SyntaxError: Unexpected token 'export'
> 1 | import { path } from 'd3-path'
复制:
git clone https://github.com/luucvanderzee/jest-problem.git
cd jest-problem
npm i
npm run test
// The test runs without failure- this is because we're currently still using d3-path@2.0.0
npm uninstall d3-path && npm install d3-path // (upgrade to d3-path@3.0.1)
npm run test
// Now the test fails.
我应该如何配置 jest 和/或 babel 来解决这个问题?
编辑:
我已经尝试过以下方法(来自 jest 文档的 this 页面):
- 使用以下内容创建
jest.config.js文件:
module.exports = {
transform: {}
}
- 将我的
"test"命令从"jest"更改为"node --experimental-vm-modules node_modules/jest/bin/jest.js"
这给了我另一个错误:
/home/luuc/Projects/javascript/jest-problem/test/test.test.js:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,jest){import fn from '../src/index.js'
^^^^^^
SyntaxError: Cannot use import statement outside a module
我也不明白是什么意思
• To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
不是模块没有改造的问题吗?添加忽略模式会不会导致模块不被转换?
【问题讨论】:
-
嗨 Luuc,在
npm run test的输出中,jest 解释说node_modules的内容默认情况下不会使用 Babel 进行转换,并提供了有关如何更改此行为的指示。您是否尝试过任何建议? -
嗨 Mehdi,对不起,我确实尝试过,但没有成功 - 请参阅原始评论的编辑
标签: javascript jestjs babel-jest