実行するyarn add --dev jest
と、キャッシュからフェッチするときにエラーIntegrityが発生しました。
完全な出力:
tests (master)$ yarn add --dev jest
yarn add v1.19.0
info No lockfile found.
[1/4] Resolving packages...
warning jest > jest-cli > jest-config > jest-environment-jsdom > jsdom > left-pad@1.3.0: use String.prototype.padStart()
[2/4] Fetching packages...
error Incorrect integrity when fetching from the cache
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
削除node_modules
して再実行yarn install
しyarn add --dev jest
てみましたが、役に立ちませんでした。
どうすれば修正できますか?
yarn cache clean
。手動で削除することで~/.cache/yarn
、「不正な整合性」エラーが解決しました。