我的模块以这种方式导入模块:
const { Item, Item1 } = require('@v2/helpers');
这是我的 package.json:
"_moduleAliases": { "@v2/helpers": "src/v2-helpers" }
然后在测试文件中,我尝试导入以上述方式导入的文件,但由于 Jest 无法导入这些模块而失败。
Test suite failed to run
Cannot find module '@v2/helpers' from 'src/path/to/my-module.js'
该怎么办?