Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请你帮忙解决下一个错误,我尝试用 Jest 在 VUE3 中创建我的测试,但我有下一个错误,我正在使用 laravel 8 和 webpack mix
任何想法? 在此处输入图像描述
在项目中,我使用了 Vue3、Vite、Typescript 和测试工具 Jest。我发现只有 1 个解决方案来解决这个问题。我有同样的问题,花了几个小时找到正确的答案。您可以尝试在 package.json 中将 Jest 的版本从 ^27 更改为 ^26。
"jest": "^26.6.3"
如果你也使用 Typescript,你应该更改 ts-jest 插件的版本。
"ts-jest": "^26.5.6"