## 事象 [[Jest]] v29でテストを実行すると以下のエラーが出る。 ``` Module ts-jest in the transform option was not found ``` ## 原因 [[jest.config]]が古いから。 ## 解決方法 [[jest.config]].jsを最新にする。 ```js /** @type {import('jest').Config} */ const config = { verbose: true, }; module.exports = config; ``` ## 参考 - [Configuring Jest · Jest](https://jestjs.io/docs/configuration)