Open1
Nextjs12でテストするためにインストールするものメモ
- 基本的に入れるもの
- jest : ユニットテストのツール
- jest-environment-jsdom: テストでjsdomを使用する 参考
- @testing-library/react: Reactコンポーネントを操作するためのAPIを追加する
- @testing-library/dom: domノードテストできる。jest jsdomと違うと書いているが説明わからん。 参考
- @testing-library/jest-dom: jestの拡張
- @testing-library/user-event: clickとかのユーザーイベントのテスト
- next-page-tester: nextのページ遷移のテスト
yarn add - D jest jest-environment-jsdom @testing-library/react @testing-library/dom @testing-library/jest-dom @testing-library/user-event next-page-tester
jest28からjest-environment-jsdomが必要になった模様
- cssモジュールを使用している場合
jest-css-modules