还有其他人看到过吗?我在Ubuntu 18.04上使用Vue 3.0.5。我创建了一个项目,
vue create jest-example
除了添加单元测试和选择玩笑之外,我都使用默认值。
cd jest-example
npm run test:unit
示例测试运行并通过。
cd ..
mv jest-example something
cd something
npm run test:unit
Jest encountered an unexpected token
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,global,jest){import { shallowMount } from '@vue/test-utils';
^^^^^^
将其更改回原始目录名称
cd ..
mv something jest-example
cd jest-example
npm run test:unit
然后测试再次通过。为什么重命名目录会导致单元测试不再起作用?
我尝试删除node_modules目录,但这没关系。