本文介绍了如何清除 Jest 缓存?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Jest 正在获取旧版本的包,因此除非我使用 --no-cache
,否则我的测试将失败.我什至可以从文件夹 node_modules
中删除包文件夹,Jest 很乐意运行测试(几乎所有测试都通过了).
Jest is picking up an old version of a package and thus my tests fail unless I use --no-cache
. I can even delete the package folder from folder node_modules
and Jest is happy to run the tests (almost all are passing).
那么如何清除 Jest 缓存?
So how do I clear the Jest cache?
推荐答案
您可以通过运行 jest --showConfig
.查找 cacheDirectory
键.它的值是您需要删除的文件夹的名称.
You can find the cache location by running jest --showConfig
. Look for the cacheDirectory
key. Its value is the name of the folder you'll need to remove.
这篇关于如何清除 Jest 缓存?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!