プロパティ 'toBeChecked' は型 'Matchers<void, HTMLElement>' に存在しません

import '@testing-library/jest-dom'を書いて、

yarn add -D @testing-library/jest-dom
yarn add -D  @types/testing-library__jest-dom

で解決

【Jest】【React Testing Library】Property &#39;toBeInTheDocument&#39; does not exist on type &#39;JestMatchers&lt;HTMLElement&gt;&#39;.解消法【Next.js】 - Qiita

こちらのコメントをご確認ください。 状況 JestとReact Testing LibraryでNext.jsのテストを実行していたところ、以下のようにエラーが発生しました。 解消法 以下のコマンドを実行することで解消しました。 $ yarn add -D ...

Qiita