😄
jestでtoBeInTheDocument is not a functionが出た場合
以下のエラーが出た場合、
TypeError: expect(...).toBeInTheDocument is not a function
import "@testing-library/jest-dom";
をインポートしていない場合に発生する
以下のエラーが出た場合、
TypeError: expect(...).toBeInTheDocument is not a function
import "@testing-library/jest-dom";
をインポートしていない場合に発生する
Discussion